b943ed26f3
Similarly to pre-release classes, load metadata for the class anyway and allow the resolution to select it as the result and prohibit its usage in the end with the special diagnostic reported in MissingDependencyClassChecker
12 lines
115 B
Kotlin
Vendored
12 lines
115 B
Kotlin
Vendored
package a
|
|
|
|
open class A {
|
|
class Nested
|
|
|
|
fun method() {}
|
|
}
|
|
|
|
fun foo() {}
|
|
var bar = 42
|
|
typealias TA = String
|