IDEA-96713 Incorrect options shown for 'implements'

This commit is contained in:
peter
2013-09-19 11:17:20 +02:00
parent e02e2c4f8b
commit b901d90b37
4 changed files with 20 additions and 1 deletions
@@ -0,0 +1,9 @@
public class Doo implements Intf.Inner<caret> {
}
interface Intf {
int INT_FIELD = 2;
interface Inner {}
}