forked from Mirror/wren
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
|
|
}
|
|
} |