Add another test - constructor overloading.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-04-17 12:24:32 +02:00
parent 9a82298451
commit 58618a4d27
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,18 @@
class Test {
object __construct(string $a) {
print("$a\n");
}
object __construct(int $a, int $b) {
print("$a + $b = ", $a + $b, "\n");
}
}
class Program {
void main() {
object $a, $b;
$a = new Test('Hello world!');
$b = new Test(4, 7);
}
}

View File

@ -0,0 +1,2 @@
Hello world!
4 + 7 = 11