blob: 60af1310c8fe23d6f9ee1869dc9dbe2e6e28113e [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() {}