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