blob: 9838cdf7d311bf3e3498e45d883044417c8dc888 (
plain)
1
2
3
4
5
6
7
|
public class VarModifier {
private String field = "";
public void testComplex() {
final char[] shouldBeFinalCharArray = field.toCharArray();
char[] shouldBeCharArray = field.toCharArray();
}
}
|