blob: 6ba53dff550ad41cb0bde4f608da8ef0e6e11c0c [file] [log] [blame]
// "Access static 'AClass.stat' via class 'AClass' reference" "true"
class AClass {
static boolean stat;
void foo (boolean stat) {
this.stat<caret> = stat;
}
}