We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3f3f23 commit 1a70a69Copy full SHA for 1a70a69
compiler/src/dotty/tools/dotc/semanticdb/ExtractSemanticDB.scala
@@ -243,7 +243,7 @@ class ExtractSemanticDB extends Phase:
243
for alt <- tree.expr.tpe.member(imported).alternatives do
244
registerUseGuarded(None, alt.symbol, sel.imported.span, tree.source)
245
try
246
- if (alt.symbol.companionClass.isDefinedInCurrentRun)
+ if (alt.symbol.companionClass.exists)
247
registerUseGuarded(None, alt.symbol.companionClass, sel.imported.span, tree.source)
248
catch case ex: StaleSymbol =>
249
// can happen for constructor proxies. Test case is pos-macros/i13532.
0 commit comments