Files
kotlin-fork/idea/testData/checker/regression/IncompleteClassDelegation.kt
T
Pavel V. Talanov bdf76f23c4 Jvm Codegen: do not throw on malformed delegation to a type parameter
Fix exception on light class building

See KT-15931
2017-06-06 17:11:19 +03:00

15 lines
242 B
Kotlin
Vendored

package c
class C<T>: <error>T</error> by <error>{
}</error>
class D<T>: <error>T</error> by<EOLError></EOLError>
class G<T> : <error>T</error> by <error>{
val c = 3
}</error>
interface I
class A<T : I>(a: T) : <error>T</error> by a