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. 