mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 02:09:59 +07:00
"add on demand static import": avoid stub/text inconsistency on unnamed references
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
// "Add on demand static import for 'pkg.F'" "true"
|
||||
package pkg;
|
||||
|
||||
class F {
|
||||
private F. foo(int a, int b) {}
|
||||
|
||||
Inner bar(int x, int y) {}
|
||||
|
||||
static class Inner {}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
// "Add on demand static import for 'pkg.F'" "true"
|
||||
package pkg;
|
||||
|
||||
class F {
|
||||
private F. foo(int a, int b) {}
|
||||
|
||||
<caret>F.Inner bar(int x, int y) {}
|
||||
|
||||
static class Inner {}
|
||||
}
|
||||
Reference in New Issue
Block a user