summaryrefslogtreecommitdiff
path: root/test/files/neg/t696b.flags
diff options
context:
space:
mode:
authorHubert Plociniczak <hubert.plociniczak@gmail.com>2013-02-19 17:16:13 +0100
committerEugene Burmako <xeno.by@gmail.com>2013-05-11 18:37:11 +0200
commitfdead2b3793fd530e05331649e655576f30e59e9 (patch)
treea03ccd42571ee2fe2521053390d922598d8b2a9b /test/files/neg/t696b.flags
parent8168f118c9f71d63404880de89f20471043949fe (diff)
downloadscala-fdead2b3793fd530e05331649e655576f30e59e9.tar.gz
scala-fdead2b3793fd530e05331649e655576f30e59e9.tar.bz2
scala-fdead2b3793fd530e05331649e655576f30e59e9.zip
[nomaster] SI-7291: No exception throwing for diverging implicit expansion
Since we don't throw exceptions for normal errors it was a bit odd that we don't do that for DivergingImplicit. As SI-7291 shows, the logic behind catching/throwing exception was broken for divergence. Instead of patching it, I rewrote the mechanism so that we now another SearchFailure type related to diverging expansion, similar to ambiguous implicit scenario. The logic to prevent diverging expansion from stopping the search had to be slightly adapted but works as usual. The upside is that we don't have to catch diverging implicit for example in the presentation compiler which was again showing that something was utterly broken with the exception approach. NOTE: This is a partial backport of https://github.com/scala/scala/pull/2428, with a fix for SI-7291, but without removal of error kinds (the former is absolutely necessary, while the latter is nice to have, but not a must, therefore I'm not risking porting it to 2.10.x). Also, the fix for SI-7291 is hidden behind a flag named -Xdivergence211 in order not to occasionally break the code, which relies on pre-fix behavior.
Diffstat (limited to 'test/files/neg/t696b.flags')
-rw-r--r--test/files/neg/t696b.flags1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/files/neg/t696b.flags b/test/files/neg/t696b.flags
new file mode 100644
index 0000000000..d564f2b1f8
--- /dev/null
+++ b/test/files/neg/t696b.flags
@@ -0,0 +1 @@
+-Xdivergence211 \ No newline at end of file