summaryrefslogtreecommitdiff
path: root/test/files/run/t6063/S_1.scala
blob: 69b1e9127131dabe4e1a76970065ff2a90754594 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package foo

abstract class Foo {
  private[foo] def f1   = 1
  private def f2        = 2
  protected[foo] def f3 = 3
  protected def f4      = 4
  def f5                = 5
}

object Ob extends Foo