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

10 lines
217 B
Plaintext

// Attributes without a ! shouldn't be
// passed to the runtime, they're compiled out
#compileonly
class WithNonRuntime {
#unused
method() {}
}
System.print(WithNonRuntime.attributes == null) // expect: true