summaryrefslogtreecommitdiff
path: root/test/pending/pos/misc
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/misc')
-rw-r--r--test/pending/pos/misc/A.java13
-rw-r--r--test/pending/pos/misc/B.scala7
-rw-r--r--test/pending/pos/misc/J.java4
-rw-r--r--test/pending/pos/misc/S.scala4
4 files changed, 28 insertions, 0 deletions
diff --git a/test/pending/pos/misc/A.java b/test/pending/pos/misc/A.java
new file mode 100644
index 0000000000..bc8ea48dd0
--- /dev/null
+++ b/test/pending/pos/misc/A.java
@@ -0,0 +1,13 @@
+package test;
+
+import static test.A.STATE.UNDEF;
+
+class A {
+
+ public STATE state = UNDEF;
+
+ protected static enum STATE {
+ UNDEF
+ }
+
+} \ No newline at end of file
diff --git a/test/pending/pos/misc/B.scala b/test/pending/pos/misc/B.scala
new file mode 100644
index 0000000000..a6889e3c8b
--- /dev/null
+++ b/test/pending/pos/misc/B.scala
@@ -0,0 +1,7 @@
+package test
+
+class B {
+
+ def myA = new A()
+
+} \ No newline at end of file
diff --git a/test/pending/pos/misc/J.java b/test/pending/pos/misc/J.java
new file mode 100644
index 0000000000..4805791154
--- /dev/null
+++ b/test/pending/pos/misc/J.java
@@ -0,0 +1,4 @@
+class J {
+ void f (@Override{ name = value } int x) {}
+ void g (String ... x) {}
+}
diff --git a/test/pending/pos/misc/S.scala b/test/pending/pos/misc/S.scala
new file mode 100644
index 0000000000..c5bfb26f18
--- /dev/null
+++ b/test/pending/pos/misc/S.scala
@@ -0,0 +1,4 @@
+object Test extends J {
+ def h(xs: String*) {}
+ g("a", "b", "c")
+}