Consider the following: ```groovy void test(List<String> list) { def array = list.stream().toArray(String[]::new) } ``` The type of "array" should be `String[]`, but is displayed as `A[]` which is the type parameter of the method. 
Consider the following:
The type of "array" should be
String[], but is displayed asA[]which is the type parameter of the method.