blob: 898b04fa5f7420ed36c1f1aa410e94ef457145f1 [file] [log] [blame]
// Method to test: generative_constructor(A#)
class A {
var x, y, z;
A(x, y) {
this.x = x;
this.y = y;
this.z = this.x / 2;
}
}
main() {
print(new A(123, 'sdf').y);
try {} finally {} // Do not inline into main.
}