Fix internal compiler error on importing invisible fake reference

Note that this is not relevant for LOCAL/INHERITED visibilities:
  - for LOCAL visibility it's impossible to have a qualifier
  - INHERITED is an intermediate visibility, we enhance it later
    (see resolveUnknownVisibilityForMember)

 #KT-20356 Fixed
This commit is contained in:
Mikhail Zarechenskiy
2018-06-25 02:11:49 +03:00
parent 84b26fc61d
commit 600d135786
5 changed files with 46 additions and 1 deletions
@@ -263,7 +263,7 @@ public class Visibilities {
public static final Visibility INVISIBLE_FAKE = new Visibility("invisible_fake", false) {
@Override
public boolean mustCheckInImports() {
throw new IllegalStateException("This method shouldn't be invoked for INVISIBLE_FAKE visibility");
return true;
}
@Override