Skip to content

Commit 58d052e

Browse files
committed
Variations on a test case
1 parent 09e05f0 commit 58d052e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

tests/pos-custom-args/captures/lists.scala

+10
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,16 @@ def test(c: Cap, d: Cap, e: Cap) =
4747

4848
def m2c: [A, B] -> (f: A => B) -> LIST[A] ->{f} LIST[B] = m2
4949

50+
def m3 = [A, B] => () =>
51+
(f: A => B) => (xs: LIST[A]) => xs.map(f)
52+
53+
def m3c: [A, B] -> () -> (f: A => B) -> LIST[A] ->{f} LIST[B] = m3
54+
55+
def m4 = [A, B] =>
56+
(f: A => B) => () => (xs: LIST[A]) => xs.map(f)
57+
58+
def m4c: [A, B] -> (f: A => B) -> () ->{f} LIST[A] ->{f} LIST[B] = m4
59+
5060
def eff[A](x: A) = if x == e then x else x
5161

5262
val eff2 = [A] => (x: A) => if x == e then x else x

0 commit comments

Comments
 (0)