blob: 9a808a39c641a0976fa09797b7b3cfe981364815 [file] [log] [blame]
class A<T> {
T get property => throw "A.property";
}
S foo<S>() => throw "foo";
wrap<R>(R Function() f) {}
wrap2<R>(A<R> Function() f) {}
bar() {}
main() {}