blob: aef4adfabbbd9fe6533c4f915f474ab9ce500031 [file] [log] [blame]
interface Aaa {}
interface Bbb {}
class Ccc implements Aaa, Bbb {
void foo(Aaa a);
void foo(Bbb b);
{
foo(this);<caret>
}
}