Codegen tests now fail on JVM-specific errors

This commit is contained in:
Andrey Breslav
2014-06-16 22:12:56 +04:00
parent e27f3a9ab7
commit 777f3d1341
3 changed files with 8 additions and 9 deletions
@@ -1,7 +1,7 @@
class Foo {
var rnd = 10
public fun equals(that : Any) : Boolean = that is Foo && (that.rnd == rnd)
public override fun equals(that : Any?) : Boolean = that is Foo && (that.rnd == rnd)
}
fun box() : String {