class G {
    static <T> void m (T x) { }

    public static void main (String [] argv) {
	G.<String>m ("foo");
    }
}
