aboutsummaryrefslogtreecommitdiff
path: root/sbt-bridge/bridge/src/sbt-test/source-dependencies/java-static/changes
diff options
context:
space:
mode:
Diffstat (limited to 'sbt-bridge/bridge/src/sbt-test/source-dependencies/java-static/changes')
-rw-r--r--sbt-bridge/bridge/src/sbt-test/source-dependencies/java-static/changes/J1.java4
-rw-r--r--sbt-bridge/bridge/src/sbt-test/source-dependencies/java-static/changes/J2.java4
-rw-r--r--sbt-bridge/bridge/src/sbt-test/source-dependencies/java-static/changes/S.scala4
3 files changed, 12 insertions, 0 deletions
diff --git a/sbt-bridge/bridge/src/sbt-test/source-dependencies/java-static/changes/J1.java b/sbt-bridge/bridge/src/sbt-test/source-dependencies/java-static/changes/J1.java
new file mode 100644
index 000000000..cf042ce22
--- /dev/null
+++ b/sbt-bridge/bridge/src/sbt-test/source-dependencies/java-static/changes/J1.java
@@ -0,0 +1,4 @@
+public class J
+{
+ public static final Integer x = 3;
+} \ No newline at end of file
diff --git a/sbt-bridge/bridge/src/sbt-test/source-dependencies/java-static/changes/J2.java b/sbt-bridge/bridge/src/sbt-test/source-dependencies/java-static/changes/J2.java
new file mode 100644
index 000000000..8ff2e24c6
--- /dev/null
+++ b/sbt-bridge/bridge/src/sbt-test/source-dependencies/java-static/changes/J2.java
@@ -0,0 +1,4 @@
+public class J
+{
+ public static final String x = "3";
+} \ No newline at end of file
diff --git a/sbt-bridge/bridge/src/sbt-test/source-dependencies/java-static/changes/S.scala b/sbt-bridge/bridge/src/sbt-test/source-dependencies/java-static/changes/S.scala
new file mode 100644
index 000000000..45436972b
--- /dev/null
+++ b/sbt-bridge/bridge/src/sbt-test/source-dependencies/java-static/changes/S.scala
@@ -0,0 +1,4 @@
+object S
+{
+ val y: Int = J.x
+}