summaryrefslogtreecommitdiff
path: root/test/pending/pos/sig/sigs.scala
blob: 72a293d0e6669722d4414085f3415a5673422687 (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
  }
}