aboutsummaryrefslogtreecommitdiff
path: root/tests/pos
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos')
-rw-r--r--tests/pos/t1029/Test_1.scala7
-rw-r--r--tests/pos/t1029/Test_2.scala3
-rw-r--r--tests/pos/t1107b/O.scala13
-rw-r--r--tests/pos/t1107b/T.scala7
4 files changed, 30 insertions, 0 deletions
diff --git a/tests/pos/t1029/Test_1.scala b/tests/pos/t1029/Test_1.scala
new file mode 100644
index 000000000..d268c7142
--- /dev/null
+++ b/tests/pos/t1029/Test_1.scala
@@ -0,0 +1,7 @@
+class ann(a: Array[Int]) extends annotation.StaticAnnotation
+
+object Test1 {
+ // bug #1029
+ @ann(Array(10, 2)) def u = ()
+ val v: String @ann(Array(13, 2)) = "-1"
+}
diff --git a/tests/pos/t1029/Test_2.scala b/tests/pos/t1029/Test_2.scala
new file mode 100644
index 000000000..00589052c
--- /dev/null
+++ b/tests/pos/t1029/Test_2.scala
@@ -0,0 +1,3 @@
+object Test {
+ val t = Test1
+}
diff --git a/tests/pos/t1107b/O.scala b/tests/pos/t1107b/O.scala
new file mode 100644
index 000000000..019886770
--- /dev/null
+++ b/tests/pos/t1107b/O.scala
@@ -0,0 +1,13 @@
+object O
+{
+ def d(t: Top) = t match {
+ case s: Sub => true
+ case _ => false
+ }
+
+ def main(args: Array[String]): Unit = {
+ val c = new AnyRef with C
+
+ c.bob.toString + c.bob2.toString
+ }
+}
diff --git a/tests/pos/t1107b/T.scala b/tests/pos/t1107b/T.scala
new file mode 100644
index 000000000..0dff0b94f
--- /dev/null
+++ b/tests/pos/t1107b/T.scala
@@ -0,0 +1,7 @@
+sealed trait Top
+sealed trait Sub extends Top
+trait C {
+ private object P extends Sub
+ def bob() = P.getClass
+ def bob2() = O.d(P)
+}