"add on demand static import": avoid stub/text inconsistency on unnamed references

This commit is contained in:
peter
2018-05-23 18:04:45 +02:00
parent bc03062f24
commit 9a96704d9a
3 changed files with 23 additions and 1 deletions

View File

@@ -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 {}
}

View File

@@ -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 {}
}