FIR2IR: support super-types & type parameters for external class

This commit is contained in:
Mikhail Glukhikh
2019-05-16 15:42:13 +03:00
parent a973a21ec6
commit 139557e641
22 changed files with 189 additions and 143 deletions
+5
View File
@@ -5,8 +5,13 @@ class E(s: String) : Exception(s) {
}
fun testEmpty(ss: List<String>) {
for (s in ss);
}
fun main(args: Array<String>) {
if (box() == "OK") {
System.out.println("Hello")
println("Hello")
throw E("Hello")
}