create public inner class in interface (IDEA-70577)

This commit is contained in:
anna
2011-06-06 19:09:04 +04:00
parent e1293791da
commit ea622c99f3
3 changed files with 16 additions and 1 deletions
@@ -0,0 +1,7 @@
// "Create Inner Class 'Foo'" "true"
public interface Test {
void foo(Fo<caret>o f){}
class Foo {
}
}
@@ -0,0 +1,4 @@
// "Create Inner Class 'Foo'" "true"
public interface Test {
void foo(Fo<caret>o f){}
}