Drop package facades: update compiler tests.

This commit is contained in:
Dmitry Petrov
2015-10-14 14:17:43 +03:00
parent 3502c393fc
commit e7fb7483c5
89 changed files with 167 additions and 192 deletions

View File

@@ -2,15 +2,15 @@ package test;
class JavaClass {
void testMethod() {
TestPackage.none();
TopLevelKt.none();
try {
TestPackage.one();
TopLevelKt.one();
}
catch (E1 e) {}
try {
TestPackage.two();
TopLevelKt.two();
}
catch (E1 e) {}
catch (E2 e) {}