59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
14 lines
249 B
Kotlin
14 lines
249 B
Kotlin
class C<T> {
|
|
default object {
|
|
fun<T> create(t: T): C<T>{}
|
|
}
|
|
}
|
|
|
|
fun foo(c: C<String>){}
|
|
|
|
fun f(){
|
|
foo(<caret>)
|
|
}
|
|
|
|
// EXIST: { lookupString: "create", itemText: "C.create", tailText: "(t: String) (<root>)", typeText: "C<String>" }
|