Skip to content

Commit ef22195

Browse files
committed
More fixes after rebase
1 parent 9299577 commit ef22195

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/run/i4515/Macro_1.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

22
object Macro {
3-
transparent def foo[X](x: X): Unit = ~fooImpl('(x))
3+
rewrite def foo[X](x: X): Unit = ~fooImpl('(x))
44
def fooImpl[X: quoted.Type](x: quoted.Expr[X]): quoted.Expr[Unit] = '()
55
}

tests/run/i4515b/Macro_1.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import scala.tasty.Tasty
22

33
object Macro {
4-
transparent def foo: Unit = ~fooImpl
4+
rewrite def foo: Unit = ~fooImpl
55
def fooImpl(implicit tasty: Tasty): quoted.Expr[Unit] = '()
66
}

0 commit comments

Comments
 (0)