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

This commit is contained in:
peter
2018-05-23 18:07:58 +02:00
parent bc03062f24
commit 9a96704d9a
3 changed files with 23 additions and 1 deletions
@@ -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 {}
}