We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4b9b69 commit e8b25e5Copy full SHA for e8b25e5
tests/run-staging/i6281.scala
@@ -1,11 +1,11 @@
1
import scala.quoted._
2
import scala.quoted.staging._
3
4
-object Test extends App {
+sealed trait HList
5
+sealed trait HNil extends HList
6
+sealed trait ::[E, T <: HList] extends HList
7
- sealed trait HList
- sealed trait HNil extends HList
8
- sealed trait ::[E, T <: HList] extends HList
+object Test extends App {
9
10
type STM[A, L <: HList] = L match {
11
case HNil => Expr[A]
0 commit comments