aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t7987/Test_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t7987/Test_2.scala')
-rw-r--r--tests/pending/pos/t7987/Test_2.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/pending/pos/t7987/Test_2.scala b/tests/pending/pos/t7987/Test_2.scala
deleted file mode 100644
index aaa21ec4c..000000000
--- a/tests/pending/pos/t7987/Test_2.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-class C[T] {
- def foo = 0
-}
-
-object Test {
- implicit def AnyToC[T](a: Any): C[T] = new C[T]
- // was: "macro not expanded"
- Macro {
- "".foo
- ()
- }
-}