blob: 5483162fce1999c5531c3e950f0ad2e7f020d15f [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>);