summaryrefslogtreecommitdiff
path: root/test/files/run/sammy_java8.scala
Commit message (Collapse)AuthorAgeFilesLines
* Single Abstract Method support: java8 testAdriaan Moors2013-10-081-0/+34
Inspired by test/files/run/t7398.scala and sammy_poly. Added some notes to original tests. Elaborating on that note: we don't yet desugar `f(a)` to `f.sam(a)`, like we do for regular functions: `f(a)` becomes `f.apply(a)`. It seems pleasingly symmetrical and is easy to implement, but not sure it's a good idea...