mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
215 B
Java
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);
|
|
}
|
|
} |