mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-20 15:51:32 +00:00
FIR: Support java array in type argument
^KT-37321 Fixed
This commit is contained in:
7
compiler/testData/loadJava/compiledJava/ArrayInGenericArguments.java
vendored
Normal file
7
compiler/testData/loadJava/compiledJava/ArrayInGenericArguments.java
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
public class ArrayInGenericArguments {
|
||||
public static class DataKey<T> {}
|
||||
|
||||
public static final DataKey<String[]> X = null;
|
||||
public static final DataKey<int[]> Y = null;
|
||||
public static final DataKey<? extends CharSequence[]> Z = null;
|
||||
}
|
||||
Reference in New Issue
Block a user