public class TestTwoCalls { // <O> O -> O id(b) { var c = b; return c; } // <T, S> (S, T) -> T main(x,y) { id(x); return id(y); } }