blob: 94d3b4e9e5a8c9b1cf6a7c51ff604d460370289d [file] [log] [blame]
// Expectation for test:
// class Base {
// var x;
// Base(this.x);
// }
// class Sub extends Base {
// var y;
// Sub(x, this.y) : super(x) {
// print(x);
// }
// }
// main() {
// print(new Sub(1, 2).x);
// }
function() {
P.print(1);
P.print(1);
}