aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/i1130.scala
blob: c28eaa169ae1f30b3e9781d2476715c7216e9974 (plain) (blame)
1
2
3
4
5
6
7
8
trait A {
  private type Foo = Int

  def foo: Foo = 1
}
class B extends A {
  foo
}