blob: 01827e0fd50010b6f440aaa9dfc542305f170629 [file] [log] [blame]
// Test case for Issue 353:
// https://github.com/typetools/checker-framework/issues/353
// @skip-test
public class StaticInit {
static String a;
static {
a.toString();
}
}