aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/repl-power.scala
blob: 4dfeb37885192872ea7a155f94b1570789cc5859 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import scala.tools.partest.ReplTest

object Test extends ReplTest {
  def code = """
:power
// guarding against "error: reference to global is ambiguous"
global.emptyValDef  // "it is imported twice in the same scope by ..."
val tp = ArrayClass[scala.util.Random]    // magic with tags
tp.memberType(Array_apply)                // evidence
val m = LIT(10)                           // treedsl
typed(m).tpe                              // typed is in scope
  """.trim
}