Skip to content

Commit 3dc5a39

Browse files
committed
fix: adapt tests/neg-custom-args/captures/puretest.scala to the cc library
1 parent a68cd60 commit 3dc5a39

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/neg-custom-args/captures/puretest.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def baz[CC[_] <: Pure]() = ()
66
def bam[CC[A] <: Pure & Iterable[A]]() = ()
77
def test =
88
foo[Int]() // error
9-
bar[Int, List[Int]]() // error
10-
baz[Seq]() // error
11-
bam[Seq]() // error
9+
bar[Int, List[Int]]() // OK
10+
baz[Seq]() // OK
11+
bam[Seq]() // OK
1212
foo[P]() // OK

0 commit comments

Comments
 (0)