Files
2022-07-27 10:00:32 +00:00

9 lines
149 B
Java

// "Create inner class 'Generic'" "true-preview"
class Test {
void foo () {
new Generic<String> ();
}
private class Generic<T> {
}
}