Files
2022-10-27 14:39:19 +00:00

13 lines
215 B
Java

// "Create field 'array'" "true-preview"
class Smth<T> {
}
class Converter {
static <T> Smth<T> asSmth (T[] t) {}
}
class Test {
void bar () {
Smth<String> l = Converter.asSmth(a<caret>rray);
}
}