Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/delegateWithDefaultValue/afterNative.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

9 lines
210 B
Java

// "Generate overloaded method with default parameter values" "true"
class Test {
static void foo() {
foo(0);
}
static native void foo(int ii) {}
// native method intentionally has body
}