blob: a0c1bb15e4feec90507bbc6545e07703a65e6962 [file] [log] [blame]
library test;
A<num> a = new B<int>();
class A<T> {}
class B<T> extends A<T> {
foo() {}
}
main() {}
var b = (a as B<int>);