File tree Expand file tree Collapse file tree 3 files changed +2
-6
lines changed Expand file tree Collapse file tree 3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package scala.quoted
3
3
import scala .runtime .quoted .Runner
4
4
import scala .runtime .quoted .Unpickler .Pickled
5
5
6
- sealed abstract class Expr [T ] extends Quoted {
6
+ sealed abstract class Expr [T ] {
7
7
final def unary_~ : T = throw new Error (" ~ should have been compiled away" )
8
8
final def run (implicit runner : Runner [T ]): T = runner.run(this )
9
9
final def show (implicit runner : Runner [T ]): String = runner.show(this )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import scala.quoted.Types.TaggedType
4
4
import scala .reflect .ClassTag
5
5
import scala .runtime .quoted .Unpickler .Pickled
6
6
7
- sealed abstract class Type [T ] extends Quoted {
7
+ sealed abstract class Type [T ] {
8
8
type unary_~ = T
9
9
}
10
10
You can’t perform that action at this time.
0 commit comments