blob: 745c60870052633cee5dcf2ca5fe63d69c7ffd6e [file] [log] [blame]
package p; //swap hello and goodbye
class TEST
{
public interface X
{
public void method(final int i, String hello, final String goodbye);
}
private static X x = new X()
{
public void method(final int i, String hello, final String goodbye)
{
System.err.println(hello + goodbye);
}
};
public static void main(String[] args)
{
x.method(1, "hello", "goodbye");
}
}