summaryrefslogtreecommitdiff
path: root/test/files/run/repl-paste.scala
blob: 5495505353b92081e9740da864e2fe8030ff813c (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
    """
  )
}