2013-12-07 04:09:43 +00:00
|
|
|
class Foo {
|
2015-09-01 15:16:04 +00:00
|
|
|
construct new() {}
|
2013-12-07 04:09:43 +00:00
|
|
|
thisHasAMethodNameThatIsExactly64CharactersLongWhichIsTheMaximum {
|
|
|
|
|
return "result"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-15 14:46:09 +00:00
|
|
|
System.print(Foo.new().thisHasAMethodNameThatIsExactly64CharactersLongWhichIsTheMaximum) // expect: result
|