Remove uses of complete-unnamed function parameters from the testsuite.

Support for "func f(Int)" is going away.

Swift SVN r29608
This commit is contained in:
Doug Gregor
2015-06-24 16:01:37 +00:00
parent 17884f173a
commit 54979b70a7
34 changed files with 122 additions and 123 deletions

View File

@@ -1,7 +1,7 @@
// RUN: %target-parse-verify-swift
class Foo {
func bar(bar) {} // expected-error{{use of undeclared type 'bar'}}
func bar(_: bar) {} // expected-error{{use of undeclared type 'bar'}}
}
class C {