blob: c9fa103e771992a6c0d804c6809d824882da0eae [file] [log] [blame]
// "Suppress for statement" "true"
class a {
static void setA(){
}
void b(){
//noinspection AccessStaticViaInstance
<caret>new a().setA();
}
}