From 42851ed2675015d42bb341b82a09bd0bef4a8ce4 Mon Sep 17 00:00:00 2001 From: Samuel Gruetter Date: Tue, 16 Dec 2014 16:38:09 +0100 Subject: move failing tests from tests/untried/pos to tests/pending/pos --- ...cro-deprecate-dont-touch-backquotedidents.scala | 56 ++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 tests/pending/pos/macro-deprecate-dont-touch-backquotedidents.scala (limited to 'tests/pending/pos/macro-deprecate-dont-touch-backquotedidents.scala') diff --git a/tests/pending/pos/macro-deprecate-dont-touch-backquotedidents.scala b/tests/pending/pos/macro-deprecate-dont-touch-backquotedidents.scala new file mode 100644 index 000000000..8eb5a0238 --- /dev/null +++ b/tests/pending/pos/macro-deprecate-dont-touch-backquotedidents.scala @@ -0,0 +1,56 @@ +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 +} -- cgit v1.2.3