summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-invalidusage-badtargs-untyped.check
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-08-29 10:27:25 -0700
committerPaul Phillips <paulp@improving.org>2013-08-29 10:27:25 -0700
commit09058cff51cac263e7f476f97c79e6d41ee59cc9 (patch)
tree911e2504fa0cac02e4cea9cc1dd15099b9f8f55c /test/files/neg/macro-invalidusage-badtargs-untyped.check
parent44b178b37698fd51afa8eed95e98b9ff7d38b8ab (diff)
downloadscala-09058cff51cac263e7f476f97c79e6d41ee59cc9.tar.gz
scala-09058cff51cac263e7f476f97c79e6d41ee59cc9.tar.bz2
scala-09058cff51cac263e7f476f97c79e6d41ee59cc9.zip
Removing orphan check/flag files.
Diffstat (limited to 'test/files/neg/macro-invalidusage-badtargs-untyped.check')
-rw-r--r--test/files/neg/macro-invalidusage-badtargs-untyped.check18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/files/neg/macro-invalidusage-badtargs-untyped.check b/test/files/neg/macro-invalidusage-badtargs-untyped.check
deleted file mode 100644
index 1678180281..0000000000
--- a/test/files/neg/macro-invalidusage-badtargs-untyped.check
+++ /dev/null
@@ -1,18 +0,0 @@
-Macros_Test_2.scala:11: error: macro method foo1: (x: _)Int does not take type parameters.
- foo1[String](42)
- ^
-Macros_Test_2.scala:12: error: wrong number of type parameters for macro method foo2: [T](x: _)Int
- foo2[String, String](42)
- ^
-Macros_Test_2.scala:13: error: wrong number of type parameters for macro method foo3: [T, U](x: _)Int
- foo3[String](42)
- ^
-Macros_Test_2.scala:14: error: String takes no type parameters, expected: one
- foo4[String](42)
- ^
-Macros_Test_2.scala:15: error: kinds of the type arguments (List) do not conform to the expected kinds of the type parameters (type T).
-List's type parameters do not match type T's expected parameters:
-type A has no type parameters, but type U has one
- foo5[List](42)
- ^
-5 errors found