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

6 lines
115 B
Plaintext
Raw Normal View History

2013-12-06 20:09:43 -08:00
class Foo {
thisIsAMethodNameThatExceedsTheMaximumNameLengthOf64CharactersBy1 { // expect error
"body"
}
}