class MyTest1 { interface I { void m(int i1, int i2); } static void m1(int i1, int i2) { } static void m1(Integer i1, int i2) { } static void m1(int i1, Integer i2) { } static void m1(Integer i1, Integer i2) {} static void m1(Integer... is) { } static void m2(int... is) { } static void m2(double... ds) {} static void m3(int... is) { } static void m3(Object... ds) {} public static void main(String[] args) { I i1 = MyTest1::m1; i1.m(42,42); I i2 = MyTest1 :: m2; i2.m(42,42); I i3 = MyTest1 :: m3; } } class MyTest { interface I1 { void m(int i); } interface I2 { void m(MyTest t, int i); } static void static_1(Integer i) {} static void static_2(Integer i1, Integer i2) {} static void static_3(String s) {} static void static_4(String... ss) {} void _1(Integer i) {} void _2(Integer i1, Integer i2) {} void _3(String s) {} void _4(String... ss) {} static { I1 i1 = MyTest::static_1; I1 i2 = MyTest::static_2; I1 i3 = MyTest::static_3; I1 i4 = MyTest::static_4; } { I1 i_1 = MyTest::_1; I1 i_2 = MyTest::_2; I1 i_3 = MyTest::_3; I1 i_4 = MyTest::_4; I1 i1 = this::_1; I1 i2 = this::_2; I1 i3 = this::_3; I1 i4 = this::_4; I2 i21 = MyTest::m1; I2 i22 = MyTest::m2; I2 i23 = MyTest::m3; I2 i24 = MyTest::m4; } } class MyTest2 { interface IBool { void m(boolean[] a); } interface IInt { void m(int[] a); } interface IDbl { void m(double[] a); } interface IObj { void m(Object[] a); } static void foo(Object... vi) {} static { IBool iBool = MyTest2::foo; IInt iInt = MyTest2::foo; IDbl iDbl = MyTest2::foo; IObj iObj = MyTest2::foo; } }