summaryrefslogtreecommitdiff
path: root/test/files/pos/sammy_ctor_arg.scala
blob: 3c556d59f0062a037a1ebc74edd981413c680763 (plain) (blame)
1
2
3
4
trait Fun[A, B] { def apply(a: A): B }
// can't do sam expansion until the sam body def is a static method in the sam class, and not a local method in a block'
class C(f: Fun[Int, String])
class Test extends C(s => "a")