9 lines
168 B
Java
9 lines
168 B
Java
package client;
|
|
|
|
import server.TraitWithDelegatedNoImpl;
|
|
|
|
public class JClient {
|
|
public static void bar(TraitWithDelegatedNoImpl some) {
|
|
some.foo();
|
|
}
|
|
} |