From 7a5c1765421cc011903b53e8c73afd5531f82702 Mon Sep 17 00:00:00 2001 From: Adriaan Moors Date: Thu, 23 Feb 2012 13:07:12 +0100 Subject: test for TooManyArgsPatternError --- test/files/neg/error_tooManyArgsPattern.check | 4 ++++ test/files/neg/error_tooManyArgsPattern.scala | 5 +++++ 2 files changed, 9 insertions(+) create mode 100644 test/files/neg/error_tooManyArgsPattern.check create mode 100644 test/files/neg/error_tooManyArgsPattern.scala (limited to 'test/files') diff --git a/test/files/neg/error_tooManyArgsPattern.check b/test/files/neg/error_tooManyArgsPattern.check new file mode 100644 index 0000000000..ee401ad061 --- /dev/null +++ b/test/files/neg/error_tooManyArgsPattern.check @@ -0,0 +1,4 @@ +error_tooManyArgsPattern.scala:3: error: too many arguments for unapply pattern, maximum = 22 + case List(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23) => 7 + ^ +one error found diff --git a/test/files/neg/error_tooManyArgsPattern.scala b/test/files/neg/error_tooManyArgsPattern.scala new file mode 100644 index 0000000000..d55ba61001 --- /dev/null +++ b/test/files/neg/error_tooManyArgsPattern.scala @@ -0,0 +1,5 @@ +object Test { + def test(xs: Any) = xs match { // test error message TooManyArgsPatternError + case List(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23) => 7 + } +} -- cgit v1.2.3