They do not return any value.
All checks were successful
The build was successful.

This commit is contained in:
2019-04-17 12:25:57 +02:00
parent 58618a4d27
commit 2aa25f66d5

View File

@@ -1,9 +1,9 @@
class Test {
object __construct(string $a) {
void __construct(string $a) {
print("$a\n");
}
object __construct(int $a, int $b) {
void __construct(int $a, int $b) {
print("$a + $b = ", $a + $b, "\n");
}