Skip to content

Commit 2d69745

Browse files
committed
Fix exhaustivity warning
1 parent d5f9047 commit 2d69745

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/dotty/tools/dotc/core/quoted/PickledQuotes.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ object PickledQuotes {
144144
case tp: TypeRef =>
145145
typeSpliceMap.get(tp.symbol) match
146146
case Some(t) if tp.typeSymbol.hasAnnotation(defn.InternalQuoted_QuoteTypeTagAnnot) => t
147-
case None => tp
147+
case _ => tp
148148
case _ => tp
149149
}
150150
mapOver(tp1)

0 commit comments

Comments
 (0)