summaryrefslogtreecommitdiff
path: root/test/files/run/macro-system-properties.check
blob: a2da4aaf60fdfc4b5a3f20d04d5ddb1811a501d3 (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
Type in expressions to have them evaluated.
Type :help for more information.

scala> 

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

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: Context)() = { System.getProperties.put("lastContext", c); c.literalUnit }
      def grab() = macro impl
    }
defined object GrabContext

scala>     object Test { class C(implicit a: Any) { GrabContext.grab } }
defined object Test

scala>     object Test { class C(implicit a: Any) { GrabContext.grab } }
defined object Test

scala> 

scala>