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
This commit is contained in:
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
package c
|
||||
|
||||
import b.*
|
||||
|
||||
fun bar(b: B) {
|
||||
b.returnType()
|
||||
b.parameter(null)
|
||||
null.extensionReceiver()
|
||||
}
|
||||
Reference in New Issue
Block a user