aboutsummaryrefslogtreecommitdiff
path: root/sbt-bridge/src/sbt-test/source-dependencies/trait-private-var/test
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-11-17 11:51:08 +0100
committerGuillaume Martres <smarter@ubuntu.com>2016-11-22 01:35:07 +0100
commit6acdc1e85f04cc3a240ddb91983588897786d8ca (patch)
treea86262ad133d0dc3af19919cdc6ff77d1044003a /sbt-bridge/src/sbt-test/source-dependencies/trait-private-var/test
parentc061baf8c4a81f2b1505c30a5240857411981f62 (diff)
downloaddotty-6acdc1e85f04cc3a240ddb91983588897786d8ca.tar.gz
dotty-6acdc1e85f04cc3a240ddb91983588897786d8ca.tar.bz2
dotty-6acdc1e85f04cc3a240ddb91983588897786d8ca.zip
Move bridge to correct location, fix unmanaged sources in build
Diffstat (limited to 'sbt-bridge/src/sbt-test/source-dependencies/trait-private-var/test')
-rw-r--r--sbt-bridge/src/sbt-test/source-dependencies/trait-private-var/test28
1 files changed, 28 insertions, 0 deletions
diff --git a/sbt-bridge/src/sbt-test/source-dependencies/trait-private-var/test b/sbt-bridge/src/sbt-test/source-dependencies/trait-private-var/test
new file mode 100644
index 000000000..c120697d8
--- /dev/null
+++ b/sbt-bridge/src/sbt-test/source-dependencies/trait-private-var/test
@@ -0,0 +1,28 @@
+$ copy-file changes/A0.scala A.scala
+
+# compile and run for the first time to verify that everything works
+> run
+
+# introduce private var and refer to it in a trait that we inherit from
+# there'll be pair of getters and setters generated for private var that
+# has to be implemented by a class (where you can declare corresponding field)
+$ copy-file changes/A1.scala A.scala
+
+# If the introduction of a private var did not trigger the recompilation of B,
+# then this will fail with AbstractMethodError because the getters and setters
+# for the private var have not been generated.
+> run
+
+# Try again with a private val
+> clean
+
+$ copy-file changes/A0.scala A.scala
+
+# compile and run a clean project to verify that everything works
+> run
+
+# introduce a private val in the trait
+$ copy-file changes/A2.scala A.scala
+
+# Verify that B has been recompiled and that everything runs fine.
+> run