summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-without-xmacros-b.check
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-04-17 14:01:50 -0700
committerPaul Phillips <paulp@improving.org>2013-04-17 16:38:26 -0700
commit351d5ec22688a48227b76f417a0dd520934d98d7 (patch)
treeacdc0908b79734878af27116d931a00401f820fd /test/files/neg/macro-without-xmacros-b.check
parent4525e9223a2fb7c1ec3014073566b559e5839805 (diff)
downloadscala-351d5ec22688a48227b76f417a0dd520934d98d7.tar.gz
scala-351d5ec22688a48227b76f417a0dd520934d98d7.tar.bz2
scala-351d5ec22688a48227b76f417a0dd520934d98d7.zip
Absolute path in error message.
As soon as you have a directory called "language" lying around, you will appreciate why the advice given regarding SIP-18 should be "import scala.language..." not "import language..."
Diffstat (limited to 'test/files/neg/macro-without-xmacros-b.check')
-rw-r--r--test/files/neg/macro-without-xmacros-b.check6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/neg/macro-without-xmacros-b.check b/test/files/neg/macro-without-xmacros-b.check
index c3cadcf36a..c97850f0a9 100644
--- a/test/files/neg/macro-without-xmacros-b.check
+++ b/test/files/neg/macro-without-xmacros-b.check
@@ -1,5 +1,5 @@
Macros_2.scala:3: error: macro definition needs to be enabled
-by making the implicit value language.experimental.macros visible.
+by making the implicit value scala.language.experimental.macros visible.
This can be achieved by adding the import clause 'import scala.language.experimental.macros'
or by setting the compiler option -language:experimental.macros.
See the Scala docs for value scala.language.experimental.macros for a discussion
@@ -7,11 +7,11 @@ why the feature needs to be explicitly enabled.
def foo(x: Int): Int = macro Impls.foo_impl
^
Macros_2.scala:5: error: macro definition needs to be enabled
-by making the implicit value language.experimental.macros visible.
+by making the implicit value scala.language.experimental.macros visible.
def bar(x: Int): Int = macro Impls.bar_impl
^
Macros_2.scala:9: error: macro definition needs to be enabled
-by making the implicit value language.experimental.macros visible.
+by making the implicit value scala.language.experimental.macros visible.
def quux(x: Int): Int = macro Impls.quux_impl
^
three errors found