a4e327c137
Add test for KT-23457 NOTE: fixes 'importClassInCommon' test Other test cases added to increase coverage #KT-23457 Fixed
13 lines
316 B
Kotlin
Vendored
13 lines
316 B
Kotlin
Vendored
// "Import" "false"
|
|
// ACTION: Create annotation 'Foo'
|
|
// ACTION: Create class 'Foo'
|
|
// ACTION: Create enum 'Foo'
|
|
// ACTION: Create interface 'Foo'
|
|
// ACTION: Create type alias 'Foo'
|
|
// ACTION: Create type parameter 'Foo' in function 'use'
|
|
// ERROR: Unresolved reference: Foo
|
|
package bar
|
|
|
|
fun use(f: <caret>Foo) {
|
|
|
|
} |