blob: 0f39d1c7d668668dd76d1e9fe4487ce3216122c5 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/general/type_parameters_on_void.dart:1:5: Error: Type 'void' can't have type arguments.
// Try removing the type arguments.
// void<int> f() {}
// ^
//
import self as self;
static method f() void {}
static method main() dynamic {
self::f();
}