aboutsummaryrefslogtreecommitdiff
path: root/sbt-bridge/src/sbt-test/source-dependencies/value-class-underlying/C.scala
diff options
context:
space:
mode:
Diffstat (limited to 'sbt-bridge/src/sbt-test/source-dependencies/value-class-underlying/C.scala')
-rw-r--r--sbt-bridge/src/sbt-test/source-dependencies/value-class-underlying/C.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/sbt-bridge/src/sbt-test/source-dependencies/value-class-underlying/C.scala b/sbt-bridge/src/sbt-test/source-dependencies/value-class-underlying/C.scala
new file mode 100644
index 000000000..1a9a42bde
--- /dev/null
+++ b/sbt-bridge/src/sbt-test/source-dependencies/value-class-underlying/C.scala
@@ -0,0 +1,5 @@
+object C {
+ def main(args: Array[String]): Unit = {
+ val x = B.foo
+ }
+}