Files
openide/java/java-tests/testData/refactoring/inlineParameter/NullValue.java
Dmitry Jemerov b43c03ca2f moving tests
2009-09-10 19:49:38 +04:00

13 lines
171 B
Java

public class A {
void test(int count, String <caret>s) {
String t = s;
}
void callTest() {
test(1, null);
}
void callTest2() {
test(2, null);
}
}