This commit is contained in:
parent
a3a2c8b619
commit
fd278b1f47
11
tests/static_class.aer
Normal file
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
1
tests/static_class.exp
Normal file
@ -0,0 +1 @@
|
||||
This method can be called statically...
|
Loading…
Reference in New Issue
Block a user