| // @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}) {} |