show conflict on invert boolean and method references (IDEA-112572)

This commit is contained in:
Anna Kozlova
2013-08-23 21:08:34 +04:00
parent 47262762d2
commit 6ad345299f
3 changed files with 36 additions and 0 deletions
@@ -0,0 +1,14 @@
abstract class A{
static boolean isB<caret>ool() {
return false;
}
interface I {
boolean b();
}
{
I i = A::isBool;
}
}