[LC] rename ultraLightClasses to lightClassByPsi

This commit is contained in:
Dmitrii Gridin
2022-12-22 13:57:58 +01:00
committed by teamcity
parent 3447fcdd84
commit 0731780865
119 changed files with 2 additions and 2 deletions
@@ -0,0 +1,20 @@
class TestConstructor private constructor(p: Int = 1)
class AAA(vararg a: Int, f: () -> Unit) {}
class B {
@Deprecated("", level = DeprecationLevel.HIDDEN)
constructor()
}
class Outer {
inner class Inner(x: Int = 1, y: String = "")
class Nested(x: Int = 1, y: String = "")
}
sealed class A(val x: String? = null) {
class C : A()
}
class ClassWithPrivateCtor private constructor(
public val property: Set<Int>
)