summaryrefslogtreecommitdiff
path: root/test/files/run/repl-power.check
blob: c509434116bb70beec8262b1981901c448a239ab (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
29
30
31
32
Type in expressions to have them evaluated.
Type :help for more information.

scala> :power
** Power User mode enabled - BEEP WHIR GYVE **
** :phase has been set to 'typer'.          **
** scala.tools.nsc._ has been imported      **
** global._, definitions._ also imported    **
** Try  :help, :vals, power.<tab>           **

scala> // guarding against "error: reference to global is ambiguous"

scala> global.emptyValDef  // "it is imported twice in the same scope by ..."
res0: $r.global.emptyValDef.type = private val _ = _

scala> val tp = ArrayClass[scala.util.Random]    // magic with tags
tp: $r.global.Type = Array[scala.util.Random]

scala> tp.memberType(Array_apply)                // evidence
res1: $r.global.Type = (i: Int)scala.util.Random

scala> val m = LIT(10) MATCH (CASE(LIT(5)) ==> FALSE, DEFAULT ==> TRUE) // treedsl
m: $r.treedsl.global.Match = 
10 match {
  case 5 => false
  case _ => true
}

scala> typed(m).tpe                              // typed is in scope
res2: $r.treedsl.global.Type = Boolean

scala>