Fixed test data

This commit is contained in:
Valentin Kipyatkov
2015-01-27 22:49:11 +03:00
parent 78be48ace8
commit 033b626a08
11 changed files with 26 additions and 12 deletions
@@ -1,10 +1,10 @@
package a
import java.lang
import java.lang.AssertionError
fun foo() {
if (!true) {
throw lang.AssertionError("text")
throw AssertionError("text")
}
}