forked from scala/scala3
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Raise a warning instead of an error for a type ascription on a patter…
…n other than a variable or a number literal. This partially reverts the changes from scala#16150. This change is motivated by not breaking source compatibility for a number of projects in the Open Community Build.
- Loading branch information
Showing
8 changed files
with
76 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
def foo = true match | ||
case (b: Boolean): Boolean => () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
sealed trait NatT | ||
case class Zero() extends NatT | ||
case class Succ[+N <: NatT](n: N) extends NatT | ||
|
||
type Mod2[N <: NatT] <: NatT = N match | ||
case Zero => Zero | ||
case Succ[Zero] => Succ[Zero] | ||
case Succ[Succ[predPredN]] => Mod2[predPredN] | ||
|
||
def mod2(n: NatT): NatT = n match | ||
case Zero() => Zero() | ||
case Succ(Zero()) => Succ(Zero()) | ||
case Succ(Succ(predPredN)) => mod2(predPredN) | ||
|
||
inline def inlineMod2(inline n: NatT): NatT = inline n match | ||
case Zero() => Zero() | ||
case Succ(Zero()) => Succ(Zero()) | ||
case Succ(Succ(predPredN)) => inlineMod2(predPredN) | ||
|
||
transparent inline def transparentInlineMod2(inline n: NatT): NatT = inline n match | ||
case Zero() => Zero() | ||
case Succ(Zero()) => Succ(Zero()) | ||
case Succ(Succ(predPredN)) => transparentInlineMod2(predPredN) | ||
|
||
def dependentlyTypedMod2[N <: NatT](n: N): Mod2[N] = n match | ||
case Zero(): Zero => Zero() // warning | ||
case Succ(Zero()): Succ[Zero] => Succ(Zero()) // warning | ||
case Succ(Succ(predPredN)): Succ[Succ[_]] => dependentlyTypedMod2(predPredN) // warning | ||
|
||
inline def inlineDependentlyTypedMod2[N <: NatT](inline n: N): Mod2[N] = inline n match | ||
case Zero(): Zero => Zero() // warning | ||
case Succ(Zero()): Succ[Zero] => Succ(Zero()) // warning | ||
case Succ(Succ(predPredN)): Succ[Succ[_]] => inlineDependentlyTypedMod2(predPredN) // warning | ||
|
||
transparent inline def transparentInlineDependentlyTypedMod2[N <: NatT](inline n: N): Mod2[N] = inline n match | ||
case Zero(): Zero => Zero() // warning | ||
case Succ(Zero()): Succ[Zero] => Succ(Zero()) // warning | ||
case Succ(Succ(predPredN)): Succ[Succ[_]] => transparentInlineDependentlyTypedMod2(predPredN) // warning | ||
|
||
def foo(n: NatT): NatT = mod2(n) match | ||
case Succ(Zero()) => Zero() | ||
case _ => n | ||
|
||
inline def inlineFoo(inline n: NatT): NatT = inline inlineMod2(n) match | ||
case Succ(Zero()) => Zero() | ||
case _ => n | ||
|
||
inline def transparentInlineFoo(inline n: NatT): NatT = inline transparentInlineMod2(n) match | ||
case Succ(Zero()) => Zero() | ||
case _ => n | ||
|
||
@main def main(): Unit = | ||
println(mod2(Succ(Succ(Succ(Zero()))))) // prints Succ(Zero()), as expected | ||
println(foo(Succ(Succ(Succ(Zero()))))) // prints Zero(), as expected | ||
println(inlineMod2(Succ(Succ(Succ(Zero()))))) // prints Succ(Zero()), as expected | ||
println(inlineFoo(Succ(Succ(Succ(Zero()))))) // prints Succ(Succ(Succ(Zero()))); unexpected | ||
println(transparentInlineMod2(Succ(Succ(Succ(Zero()))))) // prints Succ(Zero()), as expected | ||
println(transparentInlineFoo(Succ(Succ(Succ(Zero()))))) // prints Zero(), as expected | ||
println(dependentlyTypedMod2(Succ(Succ(Succ(Zero()))))) // runtime error; unexpected | ||
println(inlineDependentlyTypedMod2(Succ(Succ(Succ(Zero()))))) // prints Succ(Zero()), as expected | ||
println(transparentInlineDependentlyTypedMod2(Succ(Succ(Succ(Zero()))))) // prints Succ(Zero()), as expected |