summaryrefslogtreecommitdiff
path: root/test/pending/run/t3832.scala
blob: f081d5b3af94248d80d569504bab57057b144052 (plain) (blame)
1
2
3
4
5
6
7
class Test {
  def this(un: Int) = {
    this()
    def test(xs: List[Int]) = xs map (x => x)
    ()
  }                                                                              
}