Add tests for Java synthetic properties in external dependencies

This commit is contained in:
Dmitry Petrov
2018-07-18 13:13:44 +03:00
parent 56c535d505
commit 76bfb94538
10 changed files with 129277 additions and 0 deletions
@@ -0,0 +1,8 @@
// !DUMP_DEPENDENCIES
// FILE: javaSyntheticProperty.kt
val test = J().foo
// FILE: J.java
class J {
public String getFoo() { return null; }
}