mirror of
https://github.com/cincheo/jsweet.git
synced 2025-12-15 15:29:22 +00:00
14 lines
233 B
Java
14 lines
233 B
Java
package source.structural.defaultMethods;
|
|
|
|
public interface I5 {
|
|
|
|
default void o2(boolean b, CC1 cc1, II1 ii1) {
|
|
System.out.println("o2-s");
|
|
}
|
|
|
|
default void o2(boolean b, CC2 cc2, II1 ii1) {
|
|
System.out.println("o2-i");
|
|
}
|
|
|
|
}
|