blob: 99715c0d9f13b3c698c2d9bf52c80140f1ed5f83 [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;
}
<<<
### TODO(1465): Should allow `(bar == null)` after the `=`.
class FooConstructor {
FooConstructor(Object bar)
: foo =
(bar == null)
? 'bar is null this is a very long string that causes a split'
: bar.myField;
}