aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t6231b.scala
blob: b4ddfe785bca8b5fcd58a27ff51f64eee4b5026c (plain) (blame)
1
2
3
4
5
6
7
8
class Test {
  def f1(t: String) = {
    trait T {
      def xs = Nil map (_ => t)
    }
    ()
  }
}