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

7 lines
120 B
Java

// "Create inner class 'Foo'" "true-preview"
public interface Test {
void foo(Fo<caret>o f){}
class Foo {
}
}