File: protected-constructors.check

package info (click to toggle)
scala 2.9.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 67,252 kB
  • ctags: 6,602
  • sloc: java: 27,488; xml: 4,412; python: 2,297; sh: 734; makefile: 16; ansic: 6
file content (25 lines) | stat: -rw-r--r-- 1,343 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
protected-constructors.scala:17: error: too many arguments for constructor Foo1: ()dingus.Foo1
    val foo1 = new Foo1("abc")
               ^
protected-constructors.scala:18: error: constructor Foo2 in class Foo2 cannot be accessed in object P
 Access to protected constructor Foo2 not permitted because
 enclosing class object P in package hungus is not a subclass of 
 class Foo2 in package dingus where target is defined
    val foo2 = new Foo2("abc")
               ^
protected-constructors.scala:19: error: class Foo3 in object Ding cannot be accessed in object dingus.Ding
 Access to protected class Foo3 not permitted because
 enclosing class object P in package hungus is not a subclass of 
 object Ding in package dingus where target is defined
    val foo3 = new Ding.Foo3("abc")
                        ^
protected-constructors.scala:15: error: class Foo3 in object Ding cannot be accessed in object dingus.Ding
 Access to protected class Foo3 not permitted because
 enclosing class object P in package hungus is not a subclass of 
 object Ding in package dingus where target is defined
    class Bar3 extends Ding.Foo3("abc")
                            ^
protected-constructors.scala:15: error: too many arguments for constructor Object: ()java.lang.Object
    class Bar3 extends Ding.Foo3("abc")
               ^
5 errors found