[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,31 @@
// CHECK_BY_JAVA_FILE
inline class UInt(private val value: Int) { }
inline enum class Foo(val x: Int) {
A(0), B(1);
fun example() { }
}
inline class InlinedDelegate<T>(var node: T) {
operator fun setValue(thisRef: A, property: KProperty<*>, value: T) {
if (node !== value) {
thisRef.notify(node, value)
}
node = value
}
operator fun getValue(thisRef: A, property: KProperty<*>): T {
return node
}
}
inline class InlineInheritance(val v: Int) : I {
override fun y() = 4
override val x get() = 5
fun z() = 7
}
// COMPILATION_ERRORS