Create error type if reflection class isn't found

Introduce a new diagnostic fired when reflection types aren't found in the
classpath
This commit is contained in:
Alexander Udalov
2014-05-08 22:02:11 +04:00
parent 9503056dd5
commit 845e3323f9
9 changed files with 50 additions and 19 deletions
@@ -0,0 +1,8 @@
fun foo() {}
class A {
fun baz() {}
}
val bar = <!REFLECTION_TYPES_NOT_LOADED!>::<!>foo
val quux = A<!REFLECTION_TYPES_NOT_LOADED!>::<!>baz