blob: 37de545a68cb926eeb13885ad5d4ceb23a42bfbb [file] [log] [blame]
class A<X> {
static X foo<X>(X x) => x;
}
main() {}
test() {}
typedef D1<X> = A<X>;
typedef D2<X extends num> = A<X>;