1
0
forked from Mirror/wren
Files
wren/test/language/class/attributes/without.wren
ruby a4ae905384 Introduce Attributes (#962)
* introduce Attributes for classes and methods
2021-04-08 21:30:09 -07:00

5 lines
148 B
Plaintext

// With no attributes defined, no ClassAttributes should be allocated
class Without {}
System.print(Without.attributes == null) // expect: true