blob: 3741099ba9344b2bbdb83a65eb73f799be9b4e88 [file] [log] [blame]
library /*isNonNullableByDefault*/;
//
// Problems in library:
//
// pkg/front_end/testcases/nnbd/nullable_rhs_of_typedef.dart:7:11: Error: Can't create typedef from nullable type.
// typedef F = void Function()?;
// ^
//
import self as self;
typedef F = invalid-type;
static method foo(() void x) void
;
static method bar(invalid-type x) void
;
static method baz(invalid-type x) void
;
static method main() dynamic
;