Aer/tests/class_instance_arg.aer

20 lines
193 B
Plaintext
Raw Normal View History

2019-04-10 19:54:05 +02:00
class Test1 {
}
class Test2 extends Test1 {
}
class Program {
object $t;
void test(Test1 $t = new Test2) {
$this->t = $t;
var_dump($this->t);
}
void main() {
$this->test();
}
}