mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
13 lines
207 B
Java
13 lines
207 B
Java
// "Create Field 'array'" "true"
|
|
class Smth<T> {
|
|
}
|
|
|
|
class Converter {
|
|
static <T> Smth<T> asSmth (T[] t) {}
|
|
}
|
|
|
|
class Test {
|
|
void bar () {
|
|
Smth<String> l = Converter.asSmth(a<caret>rray);
|
|
}
|
|
} |