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 12a545b commit ba1354dCopy full SHA for ba1354d
compiler/src/dotty/tools/dotc/parsing/Parsers.scala
@@ -1131,7 +1131,7 @@ object Parsers {
1131
1132
if in.token == THIS then handleThis(EmptyTypeIdent)
1133
else if in.token == SUPER then handleSuper(EmptyTypeIdent)
1134
- else if in.lookahead.token == DOT then
+ else if in.token != INTERPOLATIONID && in.lookahead.token == DOT then
1135
val tok = in.token
1136
val offset = in.offset
1137
val name = ident()
0 commit comments