More tests for decompiling classes with wrong abi version

This commit is contained in:
Nikolay Krasko
2014-11-10 18:22:03 +03:00
parent 43eb94726c
commit d6ffd22533
9 changed files with 143 additions and 81 deletions
@@ -0,0 +1,8 @@
package wrong
class ClassWithInnerLambda {
fun test(a: () -> Unit) = a
fun other() {
test({})
}
}
@@ -0,0 +1,5 @@
package wrong
trait TraitWithDefault {
fun foo() = 1
}