From 62d170f7178f11a0528e9ab879173013666b63e9 Mon Sep 17 00:00:00 2001 From: Josh Suereth Date: Fri, 24 Oct 2014 18:52:12 -0400 Subject: [PATCH] Add warning about incompatible parser. --- notes/0.13.7.markdown | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/notes/0.13.7.markdown b/notes/0.13.7.markdown index e99f764db..1d3bb199a 100644 --- a/notes/0.13.7.markdown +++ b/notes/0.13.7.markdown @@ -39,6 +39,12 @@ ### Fixes with compatibility implications - Maven artifact dependencies will limit their transitive dependencies to `Compile` rather than *every configuration* if no `master` configuration is found. [#1586][1586] by [@jsuereth][@jsuereth] +- The new natural whitspace handling parser is unable to cope with certain classes of Scala syntax. In particular, top-level pattern matches, or multi-value defintions are no longer supported: + + + val x, y = project // BAD + val x = project // + val y = project // GOOD ### Improvements