Fixed printing multiple errors in Kotlin signatures.

This commit is contained in:
Evgeny Gerashchenko
2012-11-20 20:45:02 +04:00
parent cda953942d
commit 19e283a333
4 changed files with 22 additions and 9 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();
}
}