unresolved qualifiers in ref expressions chain (follow IDEA-CR-24382)

This commit is contained in:
Anna Kozlova
2017-09-11 13:35:36 +03:00
parent 83cc3edc8e
commit 5fa4775cf1
7 changed files with 36 additions and 9 deletions
@@ -2,6 +2,6 @@ import mycompany.File;
class Test {
void foo() throws Exception {
File tempFile = mycompany.File.createTempFile("", "", null);
File tempFile = File.createTempFile("", "", null);
}
}