aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t4545.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t4545.scala')
-rw-r--r--tests/pending/pos/t4545.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/pending/pos/t4545.scala b/tests/pending/pos/t4545.scala
deleted file mode 100644
index b2b67fa8f..000000000
--- a/tests/pending/pos/t4545.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-object Test {
- def f[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T](table: Tuple20[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T])(fun: (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T) => Unit): Unit = {
- }
- def g[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U](table: Tuple21[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U])(fun: (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U) => Unit): Unit = {
- }
-
- def g20 = f(
- ( 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)
- ) { case ((a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t)) => () }
-
- def g21 = g(
- (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)
- ) { case ((a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u)) => () }
-}