Added tests for compiling Java against TraitImpl and extension members.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package test;
|
||||
|
||||
class GenericArray {
|
||||
{
|
||||
TestPackage.getVal_("");
|
||||
|
||||
TestPackage.getVar_("");
|
||||
TestPackage.setVar_("", "");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package test
|
||||
|
||||
val String.val_: String
|
||||
get() = ""
|
||||
|
||||
var String.var_: String
|
||||
get() = ""
|
||||
set(value) {
|
||||
}
|
||||
Reference in New Issue
Block a user