blob: 296ac2df8967a49830e07787b553de78ccde9d22 [file] [log] [blame]
public class A {
void test(int count, String <caret>s) {
String t = s;
}
void callTest() {
test(1, null);
}
void callTest2() {
test(2, null);
}
}