New J2K: add multi-file conversion tests from old j2k
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import test.AAA
|
||||
|
||||
fun foo1(a: AAA) {
|
||||
a.setX(a.getX() + 1)
|
||||
}
|
||||
|
||||
fun foo2(a: AAA?) {
|
||||
a?.setX((a?.getX() ?: 0) + 1)
|
||||
}
|
||||
|
||||
fun AAA.foo() {
|
||||
setX(getX() + 1)
|
||||
}
|
||||
Reference in New Issue
Block a user