blob: b594c4345357ca8d533180a670adeefdd4a653b0 [file] [log] [blame]
// "Initialize in constructor" "true"
class A {
private final int var;
private Main() {
var = <caret><selection>0</selection>;
}
}