Skip to content

Commit 3d23181

Browse files
committed
Add test for application with multiple type params
1 parent 0eb264f commit 3d23181

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
def f1[T][U](x: T, y: U): (T, U) = (x, y)
2-
def f2[T](x: T)[U](y: U): (T, U) = (x, y)
2+
def f2[T](x: T)[U](y: U): (T, U) = (x, y)
3+
4+
@main def test = f2(0)[String]("Hello")

0 commit comments

Comments
 (0)