blob: f696265feb629e0cbebd43f2828f33ffc216c606 [file] [log] [blame]
class A<X> {
final X x;
A(this.x);
}
extension<X> on A<X> {
X get g => x;
}
void foo<X>(A<X> it) {}