Add several new SMAP tests

Some of them are still failing and suppose to be
fixed later
This commit is contained in:
Ivan Kylchik
2022-12-20 18:10:13 +01:00
committed by Space Team
parent 32a7633c06
commit bb401c39d9
26 changed files with 603 additions and 0 deletions
@@ -0,0 +1,14 @@
// FILE: 1.kt
class A {
inline val s: Int
get() = 1
}
// FILE: 2.kt
fun box(): String {
val a = A()
var y = a.s
y++
return "OK"
}