Add multiple inheritance test.
已通過所有檢查
The build was successful.

此提交包含在:
2019-04-05 08:52:30 +02:00
父節點 5bfa60724a
當前提交 62d8451d12
共有 2 個檔案被更改,包括 65 行新增0 行删除

查看文件

@@ -0,0 +1,62 @@
interface IntA {
public void test_a();
}
interface IntB {
public void test_b();
}
class TestA {
public void test_a() {
print("Hello world from TestA::test_a().\n");
}
}
class TestB {
public void test_b() {
print("Hello world from TestB::test_b().\n");
}
}
class TestC {
public void test_c() {
print("Hello world from TestC::test_c().\n");
}
}
class TestD {
public void test_a() {
print("Hello world from TestD::test_a().\n");
}
}
class TestE {
public void test_b() {
print("Hello world from TestE::test_b().\n");
}
}
class Program extends TestE, TestD, TestC, TestB, TestA implements IntA, IntB {
void main() {
$this->test_a();
$this->test_b();
$this->test_c();
}
}