class Main { main () { return new A().mt( new MyList() , new MyInteger() , new MyInteger() ); } } class A{ mt(x,y,z) { return x.addI(y,z); } } class MyInteger { } class MyList { }