mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
9 lines
202 B
Kotlin
Vendored
9 lines
202 B
Kotlin
Vendored
// "Create class 'Foo'" "false"
|
|
// ACTION: Create extension function 'Int.Foo'
|
|
// ACTION: Rename reference
|
|
// ERROR: Unresolved reference: Foo
|
|
// WITH_RUNTIME
|
|
|
|
fun test() {
|
|
val a = 2.<caret>Foo(1)
|
|
} |