Don't generate accessors for @JvmField properties in primary constructor

This commit is contained in:
Michael Bogdanov
2015-11-28 14:17:16 +03:00
parent de37cb8f40
commit 1bf521c645
9 changed files with 80 additions and 21 deletions

View File

@@ -0,0 +1,6 @@
public class Test {
public static String invokeMethodWithPublicField() {
C c = new C("OK");
return c.foo;
}
}