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 키 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...