summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-deprecate-idents.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-04-14 05:01:20 +0100
committerPaul Phillips <paulp@improving.org>2012-04-14 05:01:20 +0100
commit7bd3b62ea5fc425fcf24685b6b8d8c5d1da0b8f5 (patch)
treec554301e2ee18b320051cc594e4518f76734fe45 /test/files/neg/macro-deprecate-idents.scala
parent909bcb89d27cd7d7f754a02eb1f1362e0f7abe54 (diff)
downloadscala-7bd3b62ea5fc425fcf24685b6b8d8c5d1da0b8f5.tar.gz
scala-7bd3b62ea5fc425fcf24685b6b8d8c5d1da0b8f5.tar.bz2
scala-7bd3b62ea5fc425fcf24685b6b8d8c5d1da0b8f5.zip
One more macro test to disable for SIP 18.
Diffstat (limited to 'test/files/neg/macro-deprecate-idents.scala')
-rw-r--r--test/files/neg/macro-deprecate-idents.scala56
1 files changed, 0 insertions, 56 deletions
diff --git a/test/files/neg/macro-deprecate-idents.scala b/test/files/neg/macro-deprecate-idents.scala
deleted file mode 100644
index 23c398e341..0000000000
--- a/test/files/neg/macro-deprecate-idents.scala
+++ /dev/null
@@ -1,56 +0,0 @@
-object Test1 {
- val macro = ???
-}
-
-object Test2 {
- var macro = ???
-}
-
-object Test3 {
- type macro = Int
-}
-
-package test4 {
- class macro
-}
-
-object Test5 {
- class macro
-}
-
-package test6 {
- object macro
-}
-
-object Test7 {
- object macro
-}
-
-package test8 {
- trait macro
-}
-
-object Test9 {
- trait macro
-}
-
-package macro {
- package macro.bar {
- }
-}
-
-package foo {
- package macro.foo {
- }
-}
-
-object Test12 {
- val Some(macro) = Some(42)
- macro match {
- case macro => println(macro)
- }
-}
-
-object Test13 {
- def macro = 2
-} \ No newline at end of file