blob: 8bd0c4b808b5e265909a947fd5ae44b43c6338e0 [file] [log] [blame]
// Errors:
//
// pkg/front_end/testcases/reject_generic_function_types_in_bounds.dart:8:12: Error: Type variables can't have generic function types in their bounds.
// class Hest<TypeX extends TypeY Function<TypeY>(TypeY)> {}
// ^^^^^
library;
import self as self;
import "dart:core" as core;
class Hest<TypeX extends <TypeY extends core::Object = dynamic>(TypeY) TypeY = dynamic> extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
}
static method main() dynamic {}