Skip to content

Commit c77be26

Browse files
committed
Adapt test with failures in different phases
1 parent 85f1bb3 commit c77be26

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

tests/neg/i7919.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,9 @@ object Test {
1010
}
1111

1212
given Expr[Int] // error
13-
new Expr[Int] // error
1413
class Expr2 extends Expr[Int] // error
1514

1615
given Type[Int] // error
17-
new Type[Int] // error
1816
class Type2 extends Type[Int] // error
1917

2018
}

tests/neg/i7919b.scala

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import scala.quoted._
2+
3+
object Test {
4+
new Expr[Int] // error
5+
new Type[Int] // error
6+
}

0 commit comments

Comments
 (0)