summaryrefslogtreecommitdiff
path: root/test/disabled/neg/macro-deprecate-idents.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/disabled/neg/macro-deprecate-idents.scala')
-rw-r--r--test/disabled/neg/macro-deprecate-idents.scala56
1 files changed, 0 insertions, 56 deletions
diff --git a/test/disabled/neg/macro-deprecate-idents.scala b/test/disabled/neg/macro-deprecate-idents.scala
deleted file mode 100644
index 23c398e341..0000000000
--- a/test/disabled/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