blob: a2f7276d03bcef65287d182172a2b25fdcf8979a [file] [log] [blame]
library /*isNonNullableByDefault*/;
//
// Problems in library:
//
// pkg/front_end/testcases/general/dynamic_and_void.dart:10:1: Error: Type 'dynamic' not found.
// dynamic testDynamic() => 0;
// ^^^^^^^
//
import self as self;
import "dart:core" show int;
static method testDynamic() invalid-type
return 0;
static method testVoid() void {}
static method main() dynamic {}