mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
Support for synthetic extensions in codegen
This commit is contained in:
11
compiler/testData/codegen/boxAgainstJava/syntheticExtensions/implicitReceiver.java
vendored
Normal file
11
compiler/testData/codegen/boxAgainstJava/syntheticExtensions/implicitReceiver.java
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
class JavaClass {
|
||||
private String myX;
|
||||
|
||||
public String getX() {
|
||||
return myX;
|
||||
}
|
||||
|
||||
public void setX(String x) {
|
||||
myX = x;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user