summaryrefslogblamecommitdiff
path: root/test/files/run/repl-paste.scala
blob: 5495505353b92081e9740da864e2fe8030ff813c (plain) (tree)
1
2
3
4
5




                                   








                      
 
                      


       
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
    """
  )
}