From 0631b50d02010d691d4b9b9c5459c7460359c044 Mon Sep 17 00:00:00 2001 From: Decel <8268812+Decel@users.noreply.github.com> Date: Fri, 31 Mar 2023 17:34:34 +0200 Subject: [PATCH] Update i17186.scala --- tests/pos/i17186.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pos/i17186.scala b/tests/pos/i17186.scala index e6f4aa9a829b..36efd647816c 100644 --- a/tests/pos/i17186.scala +++ b/tests/pos/i17186.scala @@ -1,5 +1,5 @@ type SecondOfTwo[X <: Tuple2[Any, Any]] = Tuple.Head[Tuple.Tail[X]] -val a = implicitly[Second[Tuple2[Int, String]] =:= String] +val a = implicitly[SecondOfTwo[Tuple2[Int, String]] =:= String] type LastOfThree[X <: Tuple3[Any, Any, Any]] = Tuple.Tail[Tuple.Tail[X]] val b = implicitly[LastOfThree[Tuple3[Int, String, Boolean]] =:= Tuple1[Boolean]]