JS: create new common directory for all generated tests, migrate several tests there
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package foo
|
||||
|
||||
open class A() {
|
||||
var a = 3;
|
||||
}
|
||||
|
||||
class B() : A() {
|
||||
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
val a = B().a
|
||||
return if (a == 3) "OK" else "Fail, a = $a"
|
||||
}
|
||||
Reference in New Issue
Block a user