From 0f9eb1a9b480f57593c0606376d51f6b27afc1e5 Mon Sep 17 00:00:00 2001 From: Nicolas Stucki Date: Thu, 14 Dec 2023 11:01:33 +0100 Subject: [PATCH] Update experimental comments on Tuple reverse These definition was updated in #19183. This does not leave much time to test before the release of 3.4. As a precaution we must delay it to 3.5. --- .../stdlibExperimentalDefinitions.scala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/run-tasty-inspector/stdlibExperimentalDefinitions.scala b/tests/run-tasty-inspector/stdlibExperimentalDefinitions.scala index afa10ad6af6f..f933776155d0 100644 --- a/tests/run-tasty-inspector/stdlibExperimentalDefinitions.scala +++ b/tests/run-tasty-inspector/stdlibExperimentalDefinitions.scala @@ -92,10 +92,10 @@ val experimentalDefinitionInLibrary = Set( "scala.quoted.Quotes.reflectModule.TermParamClauseMethods.hasErasedArgs", // New feature: reverse method on Tuple - "scala.Tuple.reverse", // can be stabilized in 3.4 - "scala.Tuple$.Reverse", // can be stabilized in 3.4 - "scala.Tuple$.ReverseOnto", // can be stabilized in 3.4 - "scala.runtime.Tuples$.reverse", // can be stabilized in 3.4 + "scala.Tuple.reverse", // can be stabilized in 3.5 + "scala.Tuple$.Reverse", // can be stabilized in 3.5 + "scala.Tuple$.ReverseOnto", // can be stabilized in 3.5 + "scala.runtime.Tuples$.reverse", // can be stabilized in 3.5 )