Skip to content

Commit 9f15be2

Browse files
Fix tests/pos-macros/i10864a (#18033)
This test had a conflict with #16968.
2 parents cf50fe3 + add6acf commit 9f15be2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/pos-macros/i10864a/Macro_1.scala

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ object T {
99
case '[type x; x] =>
1010
assert(Type.show[x] == "scala.Int", Type.show[x])
1111
case '[type f[X]; f] =>
12-
assert(Type.show[f] == "[A >: scala.Nothing <: scala.Any] => scala.collection.immutable.List[A]", Type.show[f])
12+
assert(Type.show[f] == "[A >: scala.Nothing <: scala.Any] =>> scala.collection.immutable.List[A]", Type.show[f])
1313
case '[type f[X <: Int]; f] =>
14-
assert(Type.show[f] == "[T >: scala.Nothing <: scala.Int] => C[T]", Type.show[f])
14+
assert(Type.show[f] == "[T >: scala.Nothing <: scala.Int] =>> C[T]", Type.show[f])
1515
case '[type f <: AnyKind; f] =>
16-
assert(Type.show[f] == "[K >: scala.Nothing <: scala.Any, V >: scala.Nothing <: scala.Any] => scala.collection.immutable.Map[K, V]", Type.show[f])
16+
assert(Type.show[f] == "[K >: scala.Nothing <: scala.Any, V >: scala.Nothing <: scala.Any] =>> scala.collection.immutable.Map[K, V]", Type.show[f])
1717
'{}
1818
}
1919

0 commit comments

Comments
 (0)