12 lines
193 B
Kotlin
Vendored
12 lines
193 B
Kotlin
Vendored
// FIR_COMPARISON
|
|
import java.util.HashSet
|
|
|
|
open class Base
|
|
|
|
fun <T: Base> Set<List<T>>.extensionInternal() = 12
|
|
|
|
fun some() {
|
|
HashSet<List<Base>>().ex<caret>
|
|
}
|
|
|
|
// EXIST: extensionInternal |