blob: d0cb97140585dae938a32871bf9735e51b7561d2 [file] [log] [blame]
late
int? lateTopLevelField;
class Class<T> {
static late int;
operator? (){}
lateStaticField1;
static late int;
operator? (){}
lateStaticField2;
static staticMethod() {}
late
int? lateInstanceField;
late
T? lateGenericInstanceField;
instanceMethod(T? value) {}
}
extension Extension<T> on Class<T> {
static late int;
operator? (){}
lateExtensionField1;
static late int;
operator? (){}
lateExtensionField2;
static staticMethod() {}
}
main() {}
expect(expected, actual) {}
throws(f(), String message) {}