blob: be30e1a18003cf07c2f945f9b9797575cf00bfd9 [file] [log] [blame]
// Errors:
//
// pkg/front_end/testcases/rasta/malformed_function_type.dart:5:16: Error: The typedef 'Handle' has a reference to itself.
// typedef Handle Handle(String command);
// ^
library;
import self as self;
import "dart:core" as core;
typedef Handle = (core::String) dynamic;
static method main() dynamic {
(core::String) dynamic h;
}