TEST: constructor body test

This commit is contained in:
Vasily Levchenko
2016-11-18 06:04:29 +03:00
committed by vvlevchenko
parent 4d24d735de
commit 81742556a6
4 changed files with 24 additions and 6 deletions
@@ -0,0 +1,6 @@
class A {
var field0:Int = 0;
constructor(arg0:Int) {
field0 = arg0
}
}