class Ideone {
	static <T> void foo(T t) {
		println "foo"
	}
    static void main(String[] args) {
        Ideone.<Integer>foo(1)
    }
}
