Analysis API: Add tests for KT-54648

This commit is contained in:
Kirill Rakhman
2023-01-27 16:13:03 +01:00
committed by Space Team
parent 63a908cff8
commit 5e56845ce0
9 changed files with 154 additions and 0 deletions
@@ -0,0 +1,10 @@
fun call {
val foo = CInt32VarX<Int>()
foo.<expr>value</expr> += 42
}
class CInt32VarX<T>
var <T : Int> CInt32VarX<T>.value: T
get() = TODO()
set(value) {}