Skip to content

Commit cca3d08

Browse files
fixed repl test
1 parent 1b80598 commit cca3d08

File tree

1 file changed

+1
-1
lines changed
  • compiler/test-resources/repl

1 file changed

+1
-1
lines changed

compiler/test-resources/repl/10886

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ scala> type Channel = "A" | "B"
33

44
scala> type SelChannel[C <: Tuple] = C match { case x *: xs => x | SelChannel[xs] case _ => Nothing }
55

6-
scala> lazy val a: SelChannel[("A", "B", "C")] = a
6+
scala> lazy val a: SelChannel[("A", "B", "C")] = "A"
77
lazy val a: "A" | ("B" | ("C" | Nothing))
88

99
scala>:type a

0 commit comments

Comments
 (0)