blob: b99cbc5e49c2968316c04636e7f39030324c0c54 [file] [log] [blame]
package p;
interface I1 {
void /*target*/m(int i);
}
interface I2 {
void /*ripple*/m(int integer);
}
class I implements I1, I2 {
void /*ripple*/m(int in);
}