IDEA-89344: create inner class: make a class static when needed

This commit is contained in:
anna
2012-07-31 12:24:28 +02:00
parent 03d6ee4544
commit 58ea14ba09
3 changed files with 35 additions and 4 deletions
@@ -0,0 +1,9 @@
// "Create Inner Class 'Foo'" "true"
public class Test {
static class A extends Foo {
}
private static class Foo {
}
}
@@ -0,0 +1,6 @@
// "Create Inner Class 'Foo'" "true"
public class Test {
static class A extends F<caret>oo {
}
}