summaryrefslogtreecommitdiff
path: root/test/files/run/macro-system-properties.check
blob: b102d319ec776b7e0fa0ca4c7c02bcf094f0b896 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Type in expressions to have them evaluated.
Type :help for more information.

scala> import language.experimental._, reflect.macros.BlackboxContext
import language.experimental._
import reflect.macros.BlackboxContext

scala>     object GrabContext {
      def lastContext = Option(System.getProperties.get("lastContext").asInstanceOf[reflect.macros.runtime.Context])
      // System.properties lets you stash true globals (unlike statics which are classloader scoped)
      def impl(c: BlackboxContext)() = { import c.universe._; System.getProperties.put("lastContext", c); c.Expr[Unit](q"()") }
      def grab() = macro impl
    }
defined object GrabContext

scala>     object Test { class C(implicit a: Any) { GrabContext.grab } }
<console>:12: warning: a pure expression does nothing in statement position; you may be omitting necessary parentheses
           object Test { class C(implicit a: Any) { GrabContext.grab } }
                                                                ^
defined object Test

scala>     object Test { class C(implicit a: Any) { GrabContext.grab } }
<console>:12: warning: a pure expression does nothing in statement position; you may be omitting necessary parentheses
           object Test { class C(implicit a: Any) { GrabContext.grab } }
                                                                ^
defined object Test

scala>