mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 19:49:44 +07:00
[^ann] IDEA-85010 Inner enum is completed incorrectly in method return type
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
public class Bar3 {
|
||||
|
||||
protected abstract Response.Stat<caret>
|
||||
}
|
||||
class Goo {
|
||||
public static class Response {
|
||||
public enum Status {}
|
||||
}
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
public class Bar3 {
|
||||
{
|
||||
new Runnable() {
|
||||
protected abstract Response.Statu<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
class Goo {
|
||||
public static class Response {
|
||||
public enum Status {}
|
||||
}
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
public class Bar3 {
|
||||
{
|
||||
new Runnable() {
|
||||
protected abstract Goo.Response.Status<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
class Goo {
|
||||
public static class Response {
|
||||
public enum Status {}
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
public class Bar3 {
|
||||
|
||||
protected abstract Goo.Response.Status<caret>
|
||||
}
|
||||
class Goo {
|
||||
public static class Response {
|
||||
public enum Status {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user