summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGrzegorz Kossakowski <grzegorz.kossakowski@gmail.com>2014-09-02 11:55:33 +0200
committerGrzegorz Kossakowski <grzegorz.kossakowski@gmail.com>2014-09-02 11:55:33 +0200
commitc66b88636149e950983d302cc035fc40d5ed14bf (patch)
treefebb1b83016dd2646965ea7116f11f1d81a5ac0e /test
parentfc21e3b3bef59e17b3c9aa800d9288752f41853f (diff)
parent997ef56058d8c44d2b9c5f561edf2aa65221c150 (diff)
downloadscala-c66b88636149e950983d302cc035fc40d5ed14bf.tar.gz
scala-c66b88636149e950983d302cc035fc40d5ed14bf.tar.bz2
scala-c66b88636149e950983d302cc035fc40d5ed14bf.zip
Merge pull request #3952 from gourlaysama/wip/t8828-lint-innacessible
SI-8828 fix regression in Xlint visibility warning for sealed classes
Diffstat (limited to 'test')
-rw-r--r--test/files/pos/t8828.flags1
-rw-r--r--test/files/pos/t8828.scala20
2 files changed, 21 insertions, 0 deletions
diff --git a/test/files/pos/t8828.flags b/test/files/pos/t8828.flags
new file mode 100644
index 0000000000..e68991f643
--- /dev/null
+++ b/test/files/pos/t8828.flags
@@ -0,0 +1 @@
+-Xlint:inaccessible -Xfatal-warnings
diff --git a/test/files/pos/t8828.scala b/test/files/pos/t8828.scala
new file mode 100644
index 0000000000..92092b4dd4
--- /dev/null
+++ b/test/files/pos/t8828.scala
@@ -0,0 +1,20 @@
+
+package outer
+
+package inner {
+
+ private[inner] class A
+
+ // the class is final: no warning
+ private[outer] final class B {
+ def doWork(a: A): A = a
+ }
+
+ // the trait is sealed and doWork is not
+ // and cannot be overriden: no warning
+ private[outer] sealed trait C {
+ def doWork(a: A): A = a
+ }
+
+ private[outer] final class D extends C
+}