blob: 463641d174e91ac720c1fab13b14ed80417e3622 [file] [log] [blame]
<option>CLASS_BRACE_STYLE=NEXT_LINE</option>
class Foox{}
print new Foox(){
@Override
String toString() {
'abc'
}
}
-----
class Foox
{}
print new Foox() {
@Override
String toString() {
'abc'
}
}