Skip to content

Commit 71f317c

Browse files
Merge pull request #12847 from dotty-staging/regression-tests
Add regression tests for issues that fixed themselves
2 parents bace3e6 + b72de46 commit 71f317c

File tree

8 files changed

+95
-0
lines changed

8 files changed

+95
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def foo = true match
2+
case (b: Boolean): Boolean => ()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
type Return[X] = X match
2+
case List[t] => List[t]
3+
case Any => List[X]
4+
5+
object Return:
6+
def apply[A](a:A):Return[A] = a match
7+
case a: List[t] => a
8+
case a: Any => List(a)
9+
10+
object Test1:
11+
Return(1).map(x => x)
12+
13+
14+
type Boxed[X] = X match
15+
case Box[t] => Box[t]
16+
case Any => Box[X]
17+
18+
def box[X](x: X): Boxed[X] = x match
19+
case b: Box[t] => b
20+
case x: Any => Box(x)
21+
22+
case class Box[A](a:A):
23+
def map[B](f: A => B): Box[B] = Box(f(a))
24+
25+
object Test2:
26+
box(box(1)).map(_ + 1)

tests/pos/i10389.scala

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import scala.util._
2+
3+
object FooBar {
4+
def foo = List("1","two","3").collect{ x =>
5+
Try(x.toInt) match {
6+
case Success(int) => int
7+
}
8+
}
9+
}

tests/pos/i10897.scala

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import Tuple.Union
2+
3+
object Foo
4+
5+
val x = summon[Union[(Foo.type, 1)] =:= (Foo.type | 1)] // doesn't compile
6+
val y = summon[Union[(Foo.type, 1, String)] =:= (Foo.type | 1 | String)] // compiles

tests/pos/i11163.scala

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
inline def summonA[T](using x: T): x.type = x
2+
inline def summonB[T](using inline x: T): x.type = x
3+
inline def summonC[T](using inline x: T): T = x
4+
5+
trait Foo:
6+
def f: Int = 9
7+
8+
def test(using Foo) =
9+
summonA[Foo].f
10+
summonB[Foo].f
11+
summonC[Foo].f
12+
()

tests/pos/i11556.scala

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
type Traverser[-I, +O] = I => LazyList[(O)]
2+
extension[I, O](ta: Traverser[I, O])
3+
def ~>[P](tb: Traverser[O, P]): Traverser[I, P] = ???
4+
5+
class Graph { class Node }
6+
7+
case class Path[+E](e: E)
8+
type Query[-I, +O] = Traverser[Path[I], Path[O]]
9+
10+
def nodesQ(using g: Graph): Query[Nothing, g.Node] = ???
11+
def outsQ(using g: Graph): Query[g.Node, g.Node] = ???
12+
13+
object graph extends Graph
14+
import graph._
15+
given graph.type = graph
16+
17+
object Issue11556:
18+
val q1: Query[Nothing, Node] = nodesQ ~> outsQ
19+
implicitly[q1.type <:< Query[Nothing, Node]]
20+
21+
val q2 = nodesQ ~> outsQ
22+
val q3: Query[Nothing, Node] = q2
23+
implicitly[q2.type <:< Query[Nothing, Node]]
24+
end Issue11556

tests/pos/i9769.scala

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
object Main {
2+
val lifeOfPi = 3.14159
3+
val fInterpolator = f"The approximate value of pi is $lifeOfPi%4.2f"
4+
5+
def main(args: Array[String]): Unit = {
6+
println(fInterpolator)
7+
}
8+
9+
}

tests/pos/i9833.scala

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
object Main extends App:
2+
enum Extends[A, B]:
3+
case Ev[B, A <: B]() extends (A Extends B)
4+
5+
def cast(a: A): B = this match {
6+
case Extends.Ev() => a
7+
}

0 commit comments

Comments
 (0)