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 df8293a commit 076a5ddCopy full SHA for 076a5dd
tests/run/i4947a.scala
@@ -1,6 +1,6 @@
1
object Test {
2
3
- transparent def fact[T](transparent i: Int)(f: => T): Int = {
+ rewrite def fact[T](transparent i: Int)(f: => T): Int = {
4
printStack("track", i)
5
6
f
tests/run/i4947b/Lib_1.scala
@@ -1,5 +1,5 @@
object Lib {
- transparent def track[T](f: => T): T = {
+ rewrite def track[T](f: => T): T = {
printStack("track")
@@ -12,7 +12,7 @@ object Lib {
12
println(s"$tag (i = $i): ${new Exception().getStackTrace().apply(1)}")
13
}
14
15
16
17
18
track {
0 commit comments