summaryrefslogblamecommitdiff
path: root/test/files/run/repl-paste.check
blob: d3e171fbfb18cefb698ae7d296f0aac72062d246 (plain) (tree)
1
2
3
4
5
6
7


                                           



                                         










                      








                                        
Type in expressions to have them evaluated.
Type :help for more information.

scala> :paste
// Entering paste mode (ctrl-D to finish)


class Dingus
{
  private val x = 5
  def y = Dingus.x * 2
}
object Dingus
{
  private val x = 55
}

val x = (new Dingus).y


// Exiting paste mode, now interpreting.

defined class Dingus
defined module Dingus
x: Int = 110

scala>