mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
7 lines
138 B
Java
7 lines
138 B
Java
// "Create Inner Class 'Foo'" "true"
|
|
public class Test {
|
|
void foo(Class<? extends Number> n){}
|
|
void bar() {
|
|
foo(Fo<caret>o);
|
|
}
|
|
} |