summaryrefslogblamecommitdiff
path: root/test/files/run/t4671.check
blob: 4699818cd45734d27f0ebd237b0779eb6560474f (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 module 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>