blob: c2aae7c5e926469a86591f688527893f502a7017 [file] [log] [blame]
package p;
interface I1 {
void /*target*/m(List l);
}
interface I2 {
void /*ripple*/m(List l);
}
class I implements I1, I2 {
void /*ripple*/m(List l);
}