support @FunctionalInterface

This commit is contained in:
Anna Kozlova
2013-01-28 16:21:22 +04:00
parent 6d40026bd4
commit f1c1c6ee42
6 changed files with 34 additions and 0 deletions
@@ -0,0 +1,5 @@
<error descr="Multiple non-overriding abstract methods found">@FunctionalInterface</error>
interface Test {
void foo();
void bar();
}