Looks like force=true does the trick. Otherwise it's only -verbose.
11:41 ~/Projects/Kepler (2.10.x)$ scala
Welcome to Scala version 2.10.1-20121112-131306-1a6c859710 (Java
HotSpot(TM) 64-Bit Server VM, Java 1.6.0_37).
Type in expressions to have them evaluated.
Type :help for more information.
scala> def impl(c: Context) = {
c.info(c.universe.NoPosition, "hello",
force = true); c.literalUnit }
impl: (c: scala.reflect.macros.Context)c.Expr[Unit]
scala> def foo = macro impl
foo: Unit
scala> foo
hello
On Nov 15, 7:06 pm, Léonard Schneider <
leonard.schnei...@gmail.com>
wrote: