blob: 5db5cdfec76b4db60ab5d7ddb4710106290d92b9 [file] [log] [blame]
// "Make 'main' not static" "false"
class DateFormat {
public void parse(String s){}
}
class TestParse {
public static void main(String[] args) {
DateFormat.<caret>parse("20070724T174800");
}
}