summaryrefslogtreecommitdiff
path: root/test/files/scalacheck/testdir
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/scalacheck/testdir')
-rw-r--r--test/files/scalacheck/testdir/dep.scala7
-rw-r--r--test/files/scalacheck/testdir/test.scala10
2 files changed, 17 insertions, 0 deletions
diff --git a/test/files/scalacheck/testdir/dep.scala b/test/files/scalacheck/testdir/dep.scala
new file mode 100644
index 0000000000..ab167cbc8b
--- /dev/null
+++ b/test/files/scalacheck/testdir/dep.scala
@@ -0,0 +1,7 @@
+
+
+
+
+object Dependency {
+ val v = 1
+}
diff --git a/test/files/scalacheck/testdir/test.scala b/test/files/scalacheck/testdir/test.scala
new file mode 100644
index 0000000000..d5a5056137
--- /dev/null
+++ b/test/files/scalacheck/testdir/test.scala
@@ -0,0 +1,10 @@
+import org.scalacheck._
+
+
+
+
+
+
+object Test extends Properties("Nothing") {
+ val d = Dependency.v
+}