aboutsummaryrefslogtreecommitdiff
path: root/bridge/src/sbt-test/source-dependencies/signature-change/test
diff options
context:
space:
mode:
Diffstat (limited to 'bridge/src/sbt-test/source-dependencies/signature-change/test')
-rw-r--r--bridge/src/sbt-test/source-dependencies/signature-change/test20
1 files changed, 0 insertions, 20 deletions
diff --git a/bridge/src/sbt-test/source-dependencies/signature-change/test b/bridge/src/sbt-test/source-dependencies/signature-change/test
deleted file mode 100644
index 03ad663ab..000000000
--- a/bridge/src/sbt-test/source-dependencies/signature-change/test
+++ /dev/null
@@ -1,20 +0,0 @@
-# Case 1: parameter type changed
-$ copy-file changes/A0.scala A.scala
-> compile
-$ copy-file changes/A1.scala A.scala
-# Compilation of B.scala should fail because the signature of f changed
--> compile
-
-# Case 2: return type changed
-$ copy-file changes/A0.scala A.scala
-> compile
-$ copy-file changes/A2.scala A.scala
-# Compilation of B.scala should fail because the signature of f changed
--> compile
-
-# Case 3: type parameter bounds changed
-$ copy-file changes/A0.scala A.scala
-> compile
-$ copy-file changes/A3.scala A.scala
-# Compilation of B.scala should fail because the signature of f changed
--> compile