summaryrefslogblamecommitdiff
path: root/test/files/neg/protected-static-fail/S.scala
blob: f9dd89d9d098734c979a25ff92d09618d4d30f6a (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                         
package bippy

object Test {
  def main(args: Array[String]): Unit = {
    J.f()
    S1.f1()
    val x = new S2
    x.f2()
  }
}