Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createClass/callExpression/callWithLibClassQualifier.kt
T
Mikhail Glukhikh c084eefb65 Fix a bunch of IDE quick-fix tests (related to "convert to run/...")
These actions became available more often some days ago
2019-02-25 10:37:46 +03:00

11 lines
255 B
Kotlin
Vendored

// "Create class 'Foo'" "false"
// ACTION: Create extension function 'Int.Foo'
// ACTION: Rename reference
// ACTION: Convert to run
// ACTION: Convert to with
// ERROR: Unresolved reference: Foo
// WITH_RUNTIME
fun test() {
val a = 2.<caret>Foo(1)
}