blob: fe479f90b9ed00fe95683f9f947af6935d15dbec [file] [log] [blame]
// Expectation for test:
// class A {
// factory A(x) = B<int>;
// get typevar;
// }
// class B<T> implements A {
// var x;
// B(this.x);
//
// get typevar => T;
// }
// main() {
// new A(5).typevar;
// }
function() {
V.B$(5, P.$int);
}