blob: 4c7e4f39c91e9e7bc50bafa3a9f7c0b29ec178c0 [file] [log] [blame]
library /*isNonNullableByDefault*/;
//
// Problems in library:
//
// pkg/front_end/testcases/nnbd/nullable_rhs_of_typedef.dart:5: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
;