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 801b383 commit fa430f9Copy full SHA for fa430f9
library/src/scala/quoted/Expr.scala
@@ -2,7 +2,7 @@ package scala.quoted
2
3
import scala.runtime.quoted.Runner
4
5
-abstract class Expr[T] extends Quoted {
+trait Expr[T] extends Quoted {
6
final def unary_~ : T = throw new Error("~ should have been compiled away")
7
final def run(implicit runner: Runner[T]): T = runner.run(this)
8
final def show(implicit runner: Runner[T]): String = runner.show(this)
0 commit comments