db5e00bcc0
Technically we often can compile code which uses missing classes (as long as nothing is called on them) but it seems better to let the user know something's wrong in their setup before the error manifests itself at runtime. Also the Java compiler does the same #KT-4328 Fixed
10 lines
111 B
Kotlin
Vendored
10 lines
111 B
Kotlin
Vendored
package c
|
|
|
|
import b.*
|
|
|
|
fun bar(b: B) {
|
|
b.returnType()
|
|
b.parameter(null)
|
|
null.extensionReceiver()
|
|
}
|