[^ann] IDEA-85010 Inner enum is completed incorrectly in method return type

This commit is contained in:
peter
2012-04-23 17:27:50 +02:00
parent b1024632fc
commit 1f737ee239
7 changed files with 60 additions and 7 deletions
@@ -0,0 +1,9 @@
public class Bar3 {
protected abstract Response.Stat<caret>
}
class Goo {
public static class Response {
public enum Status {}
}
}
@@ -0,0 +1,12 @@
public class Bar3 {
{
new Runnable() {
protected abstract Response.Statu<caret>
}
}
}
class Goo {
public static class Response {
public enum Status {}
}
}
@@ -0,0 +1,12 @@
public class Bar3 {
{
new Runnable() {
protected abstract Goo.Response.Status<caret>
}
}
}
class Goo {
public static class Response {
public enum Status {}
}
}
@@ -0,0 +1,9 @@
public class Bar3 {
protected abstract Goo.Response.Status<caret>
}
class Goo {
public static class Response {
public enum Status {}
}
}