blob: e8be7a9d0b0c46ca85c28fc601043c7779c232aa [file] [log] [blame]
interface I1 {
void m();
}
interface I2 {
void m();
}
class Ambiguity1 {
static void m(I1 i1) {}
static void m(I2 i2) {}
{
m((<caret>)->{throw new AssertionError();});
}
}