blob: 9534a4f00263e466ae316c8bb1649cb9e274d5fa [file] [log] [blame]
// "Change variable 'test' type to 'char[]'" "true"
class A {
void m() {
final char[] test = new char[]{<caret>'a'};
}
}