We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bd95c0 commit b59c659Copy full SHA for b59c659
src/java_bytecode/java_types.cpp
@@ -261,7 +261,8 @@ typet java_type_from_string(
261
const typet subtype=
262
java_type_from_string(src.substr(1, std::string::npos), class_name);
263
if(subtype_letter=='L' || // [L denotes a reference array of some sort.
264
- subtype_letter=='[') // Array-of-arrays
+ subtype_letter=='[' || // Array-of-arrays
265
+ subtype_letter=='T') // Array of generic types
266
subtype_letter='A';
267
typet tmp=java_array_type(std::tolower(subtype_letter));
268
tmp.subtype().set(ID_C_element_type, subtype);
0 commit comments