summaryrefslogtreecommitdiff
path: root/test/files/neg/overlapping.scala
blob: 1c4a82ef79321b8812ddb84810c8f12707e93a3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Tests detection of overlapping erased signatures

// $Id$

trait X {
  type I;
  type J;
  def foo: I;
  def foo: J;
}