Files
openide/plugins/kotlin/fir-low-level-api-ide-impl/testData/libraryModuleResolve/topLevelClass.kt
Roman Efremov 719ac4a54b [tests] Finally remove deprecated SdkAndMockLibraryProjectDescriptor
Remove SdkAndMockLibraryProjectDescriptor from
`AbstractFirLibraryModuleDeclarationResolveTest`.
Also changed a root path for libraries in test. Instead of
`idea/tests/testData` it is now current test directory.
This needed for `fir-low-level-api-ide-impl` tests which are not
in `idea` directory. This also affected paths in
WITH_LIBRARY directives in other tests.

GitOrigin-RevId: 2d0068e5ed1e625f35c907dd790f6add515a9dee
2023-02-14 18:09:10 +00:00

8 lines
117 B
Kotlin

// WITH_LIBRARY: _library
package test
import library.TopLevelClass
fun usage() {
val a: <caret>TopLevelClass
}