summaryrefslogtreecommitdiff
path: root/test/files/run/repl-paste.scala
blob: e2ebab1e4588317e63e7893ddf6576f68672fe8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
    """
  )
}