mirror of
https://github.com/openRuyi-Project/gcc.git
synced 2026-06-26 05:15:51 +00:00
f911ba985a
From-SVN: r102074
15 lines
304 B
Java
15 lines
304 B
Java
import java.util.*;
|
|
|
|
public class SimpleTimeZoneTest
|
|
{
|
|
public static void main(String args[])
|
|
{
|
|
try {
|
|
SimpleTimeZone gmt = new SimpleTimeZone(0, "GMT");
|
|
System.out.println("PASSED: timezone="+gmt.toString());
|
|
} catch (Exception e) {
|
|
System.out.println("FAILED: "+e);
|
|
}
|
|
}
|
|
}
|