Test static class.
All checks were successful
The build was successful.

This commit is contained in:
Rafal Kupiec 2019-05-30 13:08:35 +02:00
父節點 a3a2c8b619
當前提交 fd278b1f47
簽署人: belliash
GPG Key ID: 4E829243E0CFE6B4
共有 2 個文件被更改,包括 12 次插入0 次删除

11
tests/static_class.aer Normal file
查看文件

@ -0,0 +1,11 @@
final virtual class Static {
public void test() {
print('This method can be called statically...');
}
}
final class Program {
public void main() {
Static::test();
}
}

1
tests/static_class.exp Normal file
查看文件

@ -0,0 +1 @@
This method can be called statically...