Dead
[official-gcc.git] / gomp-20050608-branch / libjava / classpath / testsuite / java.text / SimpleDateFormatTest.java
blob4bd8a5f4d49663cede7199d3b7cf955285f107fc
1 import java.util.*; // for Date()
2 import java.text.*;
4 public class SimpleDateFormatTest
6 public static void main(String args[])
8 try {
9 SimpleDateFormat formatter
10 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss z");
11 Date current = new Date();
12 System.out.println("PASSED: time="+formatter.format(current));
13 } catch (Exception e) {
14 System.out.println("FAILED: "+e);