Re: [swift-dev] [Swift CI] Build Failure: 0. OSS - Swift Incremental RA - Ubuntu 16.10 (master) #1232

2017-01-06 Thread mishal_shah via swift-dev
Hi Practicalswift, Can you please look at this failure? Thanks, Mishal Shah Stacktrace Script: -- not --crash /home/buildnode/jenkins/workspace/oss-swift-incremental-RA-linux-ubuntu-16_10/buildbot_incremental/swift-linux-x86_64/bin/swift -frontend -target x86_64-unknown-linux-gnu -module-ca

Re: [swift-dev] Anonymous closure arguments vs varargs

2017-01-06 Thread Tino Heth via swift-dev
> This sounds like a cosmetic proposal that doesn’t change semantics, so I > don’t think it’s directly related to the change I’m proposing. Well, you're the expert here, and I haven't looked at the compiler source at all — but as I understand your first message, there are special vararg-types (

Re: [swift-dev] Anonymous closure arguments vs varargs

2017-01-06 Thread Douglas Gregor via swift-dev
Hi Slava, > On Jan 4, 2017, at 6:28 PM, Slava Pestov via swift-dev > wrote: > > Hi all, > > In Swift 3.0, the following examples both typecheck: > > let fn1: ([Int]) -> () = { > let _: [Int] = $0 > } > > let fn2: (Int...) -> () = { > let _: [Int] = $0 > } > > This stopped working due to a