mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-13 15:18:48 +01:00
5 lines
148 B
Plaintext
5 lines
148 B
Plaintext
// With no attributes defined, no ClassAttributes should be allocated
|
|
|
|
class Without {}
|
|
System.print(Without.attributes == null) // expect: true
|