summaryrefslogblamecommitdiff
path: root/test/files/run/repl-paste.scala
blob: e2ebab1e4588317e63e7893ddf6576f68672fe8e (plain) (tree)


















                                   
import scala.tools.partest.ReplTest

object Test extends ReplTest {
  def code = ":paste\n" + (
    """
      class Dingus
      {
        private val x = 5
        def y = Dingus.x * 2
      }
      object Dingus
      {
        private val x = 55
      }

      val x = (new Dingus).y
    """
  )
}