From 7c34a1af9612cc696fef9f4d62d1a9a9ef8ff9ae Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Tue, 4 Jan 2011 04:54:35 +0000 Subject: Protected protected constructors. since r19547, which was for #1836 but loosened the noose too much. Closes #4128, review by odersky. --- test/files/neg/protected-constructors.scala | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 test/files/neg/protected-constructors.scala (limited to 'test/files/neg/protected-constructors.scala') diff --git a/test/files/neg/protected-constructors.scala b/test/files/neg/protected-constructors.scala new file mode 100644 index 0000000000..2838caf09c --- /dev/null +++ b/test/files/neg/protected-constructors.scala @@ -0,0 +1,21 @@ +package dingus { + class Foo1() { protected def this(name: String) = this() } + class Foo2 protected (name: String) { } + object Ding { + protected class Foo3(name: String) { } + } +} + +package hungus { + import dingus._ + + object P { + class Bar1 extends Foo1("abc") + class Bar2 extends Foo2("abc") + class Bar3 extends Ding.Foo3("abc") + + val foo1 = new Foo1("abc") + val foo2 = new Foo2("abc") + val foo3 = new Ding.Foo3("abc") + } +} -- cgit v1.2.3