blob: 78cc73cc63fbef73932d56f4c1bdebfce322fdf7 [file] [log] [blame]
import 'opt_out_lib.dart';
class A<T> {
late int ;
field = 42;
}
class B extends A<String?> {
}
typedef F = void Function()?;
List<String?> l = [];
String? s = null;
var t = s!;
late int ;
field = 42;
void method(void f()?, {required int a}) { }
main() { }
noErrors() { }