Separated test data depending on target platform (JS/JVM)

This commit is contained in:
Evgeny Gerashchenko
2013-11-20 21:00:25 +04:00
parent f06e46951f
commit d937909ebf
54 changed files with 23 additions and 22 deletions
@@ -0,0 +1,13 @@
import jet.runtime.typeinfo.KotlinSignature;
public class ClassWithWrongKotlinSignatures {
@KotlinSignature("fun bar() : String")
public static String foo() {
throw new UnsupportedOperationException();
}
@KotlinSignature("fun foo() : String")
public static String bar() {
throw new UnsupportedOperationException();
}
}