aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t7569.scala
blob: b1b1443a18186190f9bce47c4a168151a11a36fa (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._
object Test extends CompilerTest {
  import global._
  override def extraSettings = super.extraSettings + " -Yrangepos"
  override def sources = List(
    """|import scala.language.postfixOps
       |class A {
       |  val one = 1 toString
       |}""".stripMargin
  )
  def check(source: String, unit: CompilationUnit) {
    for (ClassDef(_, _, _, Template(_, _, stats)) <- unit.body ; stat <- stats ; t <- stat) {
      t match {
        case _: Select | _ : Apply | _:This => println("%-15s %s".format(t.pos.toString, t))
        case _                              =>
      }
    }
  }
}