summaryrefslogtreecommitdiff
path: root/test/disabled/neg/macro-deprecate-dont-touch-backquotedidents.scala
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-04-14 10:33:10 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-04-14 11:33:56 +0200
commit0ba3d542cc236ab2dbed3dc551920ede94787a0c (patch)
tree9e7e6e0c26a8d2f8e5b62fbf2a609349acbd8855 /test/disabled/neg/macro-deprecate-dont-touch-backquotedidents.scala
parent3a2901da406f2478b5634b0636e56de9c4cd676d (diff)
downloadscala-0ba3d542cc236ab2dbed3dc551920ede94787a0c.tar.gz
scala-0ba3d542cc236ab2dbed3dc551920ede94787a0c.tar.bz2
scala-0ba3d542cc236ab2dbed3dc551920ede94787a0c.zip
restores some disabled macro tests, makes checkFeature synchronous when used for macros
Diffstat (limited to 'test/disabled/neg/macro-deprecate-dont-touch-backquotedidents.scala')
-rw-r--r--test/disabled/neg/macro-deprecate-dont-touch-backquotedidents.scala56
1 files changed, 0 insertions, 56 deletions
diff --git a/test/disabled/neg/macro-deprecate-dont-touch-backquotedidents.scala b/test/disabled/neg/macro-deprecate-dont-touch-backquotedidents.scala
deleted file mode 100644
index dee2f1de3b..0000000000
--- a/test/disabled/neg/macro-deprecate-dont-touch-backquotedidents.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