blob: 8c9bcffc29094fab60953d4ea72f30001ae0a29d [file] [log] [blame]
class A<T> {}
S foo<S>() => throw "foo";
bar<R>(A<R> a) {}
baz() => bar(foo());
main() {}