Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createClassFromNew/beforeGenerics.java
Andrey.Cherkasov 0e1dd4d61b [intention-preview] CreateRecordFromNewFix: start template and set up generic parameters
GitOrigin-RevId: e7fea4d4b8c11d584d53bdf9450d4a29cfb19f6b
2022-10-10 12:17:19 +00:00

6 lines
112 B
Java

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