blob: de4654c228c8a534dcddf02b741b4998c596d7ac [file] [log] [blame]
>>>
class FooConstructor {
FooConstructor(Object bar)
: foo = (bar == null)
? 'bar is null this is a very long string that causes a split'
: bar.myField;
}
<<<
class FooConstructor {
FooConstructor(Object bar)
: foo = (bar == null)
? 'bar is null this is a very long string that causes a split'
: bar.myField;
}