Skip to content

Commit 600c525

Browse files
authored
Sync language.scala with main and backport "Add tests for context bounds migration" (#19515)
Backports #19510
2 parents a220621 + c76806c commit 600c525

8 files changed

+53
-1
lines changed

compiler/src/dotty/tools/dotc/config/MigrationVersion.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ object MigrationVersion:
3333

3434
val AscriptionAfterPattern = MigrationVersion(`3.3`, future)
3535

36-
val ExplicitContextBoundArgument = MigrationVersion(`3.4`, future)
36+
val ExplicitContextBoundArgument = MigrationVersion(`3.4`, `3.5`)
3737

3838
val AlphanumericInfix = MigrationVersion(`3.4`, future)
3939
val RemoveThisQualifier = MigrationVersion(`3.4`, future)

library/src/scala/runtime/stdLibPatches/language.scala

+14
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,20 @@ object language:
246246
@compileTimeOnly("`3.4` can only be used at compile time in import statements")
247247
object `3.4`
248248

249+
/** Set source version to 3.5-migration.
250+
*
251+
* @see [[https://docs.scala-lang.org/scala3/guides/migration/compatibility-intro.html]]
252+
*/
253+
@compileTimeOnly("`3.5-migration` can only be used at compile time in import statements")
254+
object `3.5-migration`
255+
256+
/** Set source version to 3.5
257+
*
258+
* @see [[https://docs.scala-lang.org/scala3/guides/migration/compatibility-intro.html]]
259+
*/
260+
@compileTimeOnly("`3.5` can only be used at compile time in import statements")
261+
object `3.5`
262+
249263
// !!! Keep in sync with dotty.tools.dotc.config.SourceVersion !!!
250264
// Also add tests in `tests/pos/source-import-3-x.scala` and `tests/pos/source-import-3-x-migration.scala`
251265

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
-- Error: tests/neg/context-bounds-migration-3.5.scala:9:2 -------------------------------------------------------------
2+
9 | foo(C[Int]()) // error
3+
| ^^^
4+
| Context bounds will map to context parameters.
5+
| A `using` clause is needed to pass explicit arguments to them.
6+
| This code can be rewritten automatically under -rewrite -source 3.4-migration.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
//> using options -source 3.5
2+
3+
class C[T]
4+
def foo[X: C] = ()
5+
6+
given [T]: C[T] = C[T]()
7+
8+
def Test =
9+
foo(C[Int]()) // error
10+
foo(using C[Int]()) // ok
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
-- [E050] Type Error: tests/neg/context-bounds-migration-future.scala:9:2 ----------------------------------------------
2+
9 | foo(C[Int]()) // error
3+
| ^^^
4+
| method foo does not take more parameters
5+
|
6+
| longer explanation available when compiling with `-explain`
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
//> using options -source future
2+
3+
class C[T]
4+
def foo[X: C] = ()
5+
6+
given [T]: C[T] = C[T]()
7+
8+
def Test =
9+
foo(C[Int]()) // error
10+
foo(using C[Int]()) // ok
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
-- Warning: tests/warn/context-bounds-migration-3.4.scala:9:2 ----------------------------------------------------------
2+
9 | foo(C[Int]()) // warn
3+
| ^^^
4+
| Context bounds will map to context parameters.
5+
| A `using` clause is needed to pass explicit arguments to them.
6+
| This code can be rewritten automatically under -rewrite -source 3.4-migration.

0 commit comments

Comments
 (0)