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






                                                                      
                                                            


                                                                           

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