blob: bc0a3412c478a99be5fc3329b84065f955bbe884 [file] [log] [blame]
class Foo {
String? x;
int y;
Foo(Object? o) : x = o as String, y = 0;
}