Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/delegateWithDefaultValue/beforeNative.java
Bas Leijdekkers 7a0ce59678 Java: generate correct code for native methods (IDEA-373315)
for the "Generate overloaded method with default parameter values" intention

GitOrigin-RevId: d595a7b1f736cdb60549c0a872da367a1ffe1a92
2025-05-26 13:23:28 +00:00

5 lines
168 B
Java

// "Generate overloaded method with default parameter values" "true"
class Test {
static native void foo(int i<caret>i) {}
// native method intentionally has body
}