mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-12 22:58:40 +01:00
12 lines
187 B
Plaintext
12 lines
187 B
Plaintext
|
|
// When used in an expression location,
|
|
// the error remains Error at '#': Expected expression
|
|
|
|
#valid
|
|
class Example {
|
|
|
|
#valid
|
|
method() {
|
|
return #invalid 1 // expect error
|
|
}
|
|
} |