Files
Alexander Udalov db5e00bcc0 Report error if some deserialized classes are missing in dependencies
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
2016-03-28 14:13:59 +03:00

10 lines
111 B
Kotlin
Vendored

package c
import b.*
fun bar(b: B) {
b.returnType()
b.parameter(null)
null.extensionReceiver()
}