Skip to content

Commit 6e5868a

Browse files
author
Oron Port
committed
fixed test-case for scala pre-2.13
1 parent aa14d5e commit 6e5868a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/scala/singleton/ops/OpInterceptSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import singleton.TestUtils._
77
class OpInterceptSpec extends Properties("OpInterceptSpec") {
88

99
trait Vec[A0, A1] {
10-
def show(implicit a0 : ValueOf[A0], a1 : ValueOf[A1]) : String = s"Vec[${valueOf[A0]}, ${valueOf[A1]}]"
10+
def show(implicit a0 : Id[A0], a1 : Id[A1]) : String = s"Vec[${a0.value}, ${a1.value}]"
1111
}
1212

1313
implicit def `Vec+`[VL0, VL1, VR0, VR1](

0 commit comments

Comments
 (0)