UL properties supports JvmSynthetic annotation for get: and set: modifiers
(+small refactoring) Fixed #KT-34973
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
public final class X /* X*/ {
|
||||
@null()
|
||||
public X();
|
||||
|
||||
public final int getW();
|
||||
|
||||
public final void setV(int);
|
||||
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
|
||||
|
||||
class X {
|
||||
@get:JvmSynthetic
|
||||
var v = 1
|
||||
|
||||
@set:JvmSynthetic
|
||||
var w = 1
|
||||
}
|
||||
Reference in New Issue
Block a user