summaryrefslogblamecommitdiff
path: root/test/files/run/t4671.check
blob: 1640dac8e49cd3251cf7c260b30691ba024d992d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12


                                           
                                                                        
                






                                               
                              

                                 
                                                                 















                                               
                              

                                 
                                                                 








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

scala> object o { val file = sys.props("partest.cwd") + "/t4671.scala" }
defined object o

scala> val s = scala.io.Source.fromFile(o.file)
s: scala.io.BufferedSource = non-empty iterator

scala> println(s.getLines.mkString("\n"))
import scala.tools.partest.ReplTest

object Test extends ReplTest {
  // My god...it's full of quines
  def code = """
object o { val file = sys.props("partest.cwd") + "/t4671.scala" }
val s = scala.io.Source.fromFile(o.file)
println(s.getLines.mkString("\n"))

val s = scala.io.Source.fromFile(o.file)
println(s.mkString(""))
""".trim
}

scala> 

scala> val s = scala.io.Source.fromFile(o.file)
s: scala.io.BufferedSource = non-empty iterator

scala> println(s.mkString(""))
import scala.tools.partest.ReplTest

object Test extends ReplTest {
  // My god...it's full of quines
  def code = """
object o { val file = sys.props("partest.cwd") + "/t4671.scala" }
val s = scala.io.Source.fromFile(o.file)
println(s.getLines.mkString("\n"))

val s = scala.io.Source.fromFile(o.file)
println(s.mkString(""))
""".trim
}


scala> :quit