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 0eb264f commit 3d23181Copy full SHA for 3d23181
tests/pos/_typeInterweaving/classless.scala
@@ -1,2 +1,4 @@
1
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)
+def f2[T](x: T)[U](y: U): (T, U) = (x, y)
3
+
4
+@main def test = f2(0)[String]("Hello")
0 commit comments