polserver/testsuite/escript/classes/fail-static-undefined.src
Kevin Eady 6a7968c20b Address final implementation TODOs (#706)
* Address code TODOs

* Update Escript version!
2024-10-10 18:06:04 +02:00

6 lines
156 B
Text

// Fail: the class-scoped `staticVar` is not accessible globally.
print( $"Global scope staticVar={staticVar}" );
class Animal()
var staticVar;
endclass