mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
Additional tests on reflection calls
This commit is contained in:
11
compiler/testData/codegen/boxWithJava/reflection/callPrivateJavaMethod/J.java
vendored
Normal file
11
compiler/testData/codegen/boxWithJava/reflection/callPrivateJavaMethod/J.java
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
public class J {
|
||||
private final String result;
|
||||
|
||||
private J(String result) {
|
||||
this.result = result;
|
||||
}
|
||||
|
||||
private String getResult() {
|
||||
return result;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user