Files
wren/test/language/method/name_too_long.wren
T

6 lines
115 B
Plaintext
Raw Normal View History

class Foo {
thisIsAMethodNameThatExceedsTheMaximumNameLengthOf64CharactersBy1 { // expect error
"body"
}
}