Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/bindFieldsFromParameters/beforeMethodGeneric.java
Mikhail Pyltsin 5c02553dad IJ-CR-152155 [java-intentions] IDEA-365126 'BindFieldsFromParameters' shouldn't be offered when method has generic parameters
- more tests

GitOrigin-RevId: 8f580e7e8a32f51b1a8320fc82cdcec11dc4975f
2024-12-26 10:30:16 +00:00

8 lines
116 B
Java

// "Bind method parameters to fields" "true-preview"
class Bar {
<T> void <caret>get(Class<T> a, int b) {
}
}