Commits

Doug Gregor committed 149d4bcb956
Disallow unnamed function parameters written without the "_:". Now, instead of writing, e.g., func f(Int) { ... } one must write the more-generally-consistent and explicit func f(_: Int) { ... } Fixes rdar://problem/16737312. Swift SVN r29609