summaryrefslogtreecommitdiff
path: root/test/pending/pos/sig/sigs.scala
blob: bdb72a09bb5cc45c07fd56fb5396fab598d557da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package test
class T {    
  def foo[T <: String](x: T): T = x
  def bar[T](x: T): T = x
  class Inner {
    def foo[T](x: T): T = x
    def bar[T](x: T): T = x
  }
}