Remove FIR test data file accidentally left in 8884cbe4

This commit is contained in:
Mikhail Glukhikh
2020-03-05 15:51:41 +03:00
parent db38dfc21b
commit 5af4efd5a7
@@ -1,14 +0,0 @@
class Annotation(val x: Int) {
fun baz() {}
fun bar() = x
}
fun foo(annotation: Annotation): Int {
if (annotation.bar() == 0) {
annotation.baz()
return 0
}
else {
return -1
}
}