blob: 88b4e863d0aaa4cc0e6d828c83d3b296aba6ae87 [file] [log] [blame]
class C<T> {
final T t;
const C(this.t);
}
Map<C<String>, int> foo() => throw 0;
test() {}