mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
9 lines
149 B
Java
9 lines
149 B
Java
// "Create inner class 'Generic'" "true-preview"
|
|
class Test {
|
|
void foo () {
|
|
new Generic<String> ();
|
|
}
|
|
|
|
private class Generic<T> {
|
|
}
|
|
} |