summaryrefslogblamecommitdiff
path: root/test/files/run/repl-power.scala
blob: 27da3df106ab44a829bcd61c9690313f8e5d7455 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11






                                                                      



                                                                           


          
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 manifests
tp.memberType(Array_apply)                // evidence
val m = LIT(10) MATCH (CASE(LIT(5)) ==> FALSE, DEFAULT ==> TRUE) // treedsl
typed(m).tpe                              // typed is in scope
  """.trim
}