summaryrefslogtreecommitdiff
path: root/test/files/pos/contextbounds-implicits-old.scala
blob: f9113ee320eb48e74504fc613855695169c4aa2c (plain) (blame)
1
2
3
4
5
6
7
8
/* Tests implicit parameters in the presence of context bounds.
 * See Section 7.4 of the Scala Language Specification.
 */
class C {

  def f[T: Manifest, S: Manifest](x: T, y: S)(implicit p: C) { }

}