Nice! I'll check it tomorrow! :-) On Mon, Dec 11, 2017 at 11:10 PM, Алексей Афанасьев <megaboc...@gmail.com> wrote:
> I've submitted pull request for this issue https://github.com/ > apache/groovy/pull/643 . There are at least two issues reported about > this problem https://issues.apache.org/jira/browse/GROOVY-7061, h > ttps://issues.apache.org/jira/projects/GROOVY/issues/GROOVY-8241. > > 2017-12-08 10:55 GMT+03:00 Konstantin Boudnik <c...@apache.org>: > >> Yup, >> >> Apache mailing lists do not accept attachments. >> -- >> With regards, >> Konstantin (Cos) Boudnik >> 2CAC 8312 4870 D885 8616 6115 220F 6980 1F27 E622 >> >> Disclaimer: Opinions expressed in this email are those of the author, >> and do not necessarily represent the views of any company the author >> might be affiliated with at the moment of writing. >> >> >> On Thu, Dec 7, 2017 at 10:39 PM, Nathan Harvey <nathanwhar...@gmail.com> >> wrote: >> > Apologies, the mailing list removed my code (forum, anyone?). Here it >> is: >> > >> > @CompileStatic >> > class SampleClass { >> > public void sample(Consumer<String> consumer) {} >> > public static void main(String[] args) { >> > new SampleClass().sample({ String str -> >> str.toUpperCase() }) // passes >> > new SampleClass().sample({ it.toUpperCase() }) // passes >> > new SampleClass().sample({ str -> it.toUpperCase() }) >> // fails >> > } >> > } >> > >> > >> > >> > -- >> > Sent from: http://groovy.329449.n5.nabble.com/Groovy-Dev-f372993.html >> > >