mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-12 14:48:40 +01:00
10 lines
217 B
Plaintext
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
|