Skip to content

Commit dc02a12

Browse files
committed
library: move files that no longer require bootstrapped compiler
Some of them had been sitting here for a long time to work around issues with -sourcepath which should all be fixed now. Also remove non-bootstrapped toExpr which had been deprecated for a while.
1 parent 7510f1a commit dc02a12

File tree

9 files changed

+1
-71
lines changed

9 files changed

+1
-71
lines changed

library/src-bootstrapped/scala/quoted/package.scala

Lines changed: 0 additions & 9 deletions
This file was deleted.

library/src-non-bootstrapped/scala/tasty/reflect/TreeUtils.scala

Lines changed: 0 additions & 56 deletions
This file was deleted.

tests/neg/i6762.check

Lines changed: 0 additions & 5 deletions
This file was deleted.

tests/neg/i6762.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ import scala.quoted.{_, given}
22

33
type G[X]
44
case class Foo[T](x: T)
5-
def f(word: String)(given QuoteContext): Expr[Foo[G[String]]] = '{Foo(${word.toExpr})} // error
5+
def f(word: String)(given QuoteContext): Expr[Foo[G[String]]] = '{Foo(${Expr(word)})} // error // error

0 commit comments

Comments
 (0)