Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/inference/kt36951.fir.kt
T
2020-10-23 08:12:15 +03:00

9 lines
177 B
Kotlin
Vendored

// !LANGUAGE: +NewInference
// !DIAGNOSTICS: -UNUSED_PARAMETER
class Base<T : T> : HashSet<T>() {
fun foo() {
super.<!INAPPLICABLE_CANDIDATE!>remove<!>("")
}
}