From 5626c7403e44380c6e3610cae8f68f3d2b52eb70 Mon Sep 17 00:00:00 2001 From: Eugene Burmako Date: Tue, 30 Jul 2013 11:37:59 +0200 Subject: [nomaster] macro errors now always have positions Back then when I implemented macros for inclusion in trunk (Spring 2012), partest didn't support the _1, _2, ... convention for neg tests, so I had to use toolboxes to test macro-generated exceptions. Unfortunately toolboxes aren't very good with positions (mostly because their inputs are almost always constructed without corresponding sources) so I didn't notice that errors signalizing about macro-generated exceptions actually don't carry positions with them because of a typo. This patch fixes the oversight, but it doesn't need to be ported to master, because over there everything's already fixed by one of the backports from macro paradise. --- test/files/neg/macro-abort/Macros_1.scala | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/files/neg/macro-abort/Macros_1.scala (limited to 'test/files/neg/macro-abort/Macros_1.scala') diff --git a/test/files/neg/macro-abort/Macros_1.scala b/test/files/neg/macro-abort/Macros_1.scala new file mode 100644 index 0000000000..676c112098 --- /dev/null +++ b/test/files/neg/macro-abort/Macros_1.scala @@ -0,0 +1,9 @@ +import scala.language.experimental.macros +import scala.reflect.macros.Context + +object Macros { + def impl(c: Context) = { + c.abort(c.enclosingPosition, "aborted") + } + def abort = macro impl +} \ No newline at end of file -- cgit v1.2.3