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