10 lines
170 B
Java
Vendored
10 lines
170 B
Java
Vendored
package client;
|
|
|
|
import server.TraitWithDelegatedWithImpl;
|
|
|
|
public class Test {
|
|
public static void bar(TraitWithDelegatedWithImpl some) {
|
|
some.foo();
|
|
}
|
|
}
|