[LC] move light class related tests to one directory

This commit is contained in:
Dmitrii Gridin
2022-12-22 13:09:47 +01:00
committed by teamcity
parent 34a1569375
commit eb3ad7e6b1
419 changed files with 21 additions and 27 deletions
@@ -0,0 +1,11 @@
class Bar(val a: Int) {
val b: Int = { 0 }()
fun getAPlusB() = a + b
class Baz {
fun doSomething() {
}
}
}