Eliminate uses of ‘#’ from the testsuite.

Swift SVN r28842
This commit is contained in:
Doug Gregor
2015-05-20 20:21:42 +00:00
parent b8f15cf0f5
commit 3926c349b2
48 changed files with 277 additions and 277 deletions

View File

@@ -3,8 +3,8 @@ public struct X {
public init() { }
}
public func the_thing<T>(#t : T) { }
public func the_thing<T>(t t : T) { }
public func the_thing_it_does(#x : X) {
public func the_thing_it_does(x x : X) {
the_thing(t: x)
}