[LC] move scripts to lightClassByPsi

This commit is contained in:
Dmitrii Gridin
2022-12-22 19:23:44 +01:00
committed by teamcity
parent 2e2e633113
commit 27ffe7c31e
33 changed files with 210 additions and 249 deletions
@@ -0,0 +1,13 @@
// IGNORE_FIR
// KT-55626
class Bar(val a: Int) {
val b: Int = { 0 }()
fun getAPlusB() = a + b
class Baz {
fun doSomething() {
}
}
}