summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@gmail.com>2014-09-02 16:52:24 +0200
committerLukas Rytz <lukas.rytz@gmail.com>2014-09-02 16:52:24 +0200
commit91c4192c39d2bdebf37a97e41d374a39ece8af85 (patch)
treee732aa1f0b6b6d65c21e91b40298f722200593f7 /test/files/pos
parent0f683b85488185f87a44a11f25edd2bf0f5a1b73 (diff)
parent1bbfd6b45b178986bfd26831689f8aa8393ae8a6 (diff)
downloadscala-91c4192c39d2bdebf37a97e41d374a39ece8af85.tar.gz
scala-91c4192c39d2bdebf37a97e41d374a39ece8af85.tar.bz2
scala-91c4192c39d2bdebf37a97e41d374a39ece8af85.zip
Merge branch 'merge/2.10-to-2.11-sept-2' into merge/2.11-to-2.12-is-it-really-sept-2-already-where-was-summer
Conflicts: versions.properties
Diffstat (limited to 'test/files/pos')
-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
+}