mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Switch range operators ".." and "...".
- 1..3 now means 1,2 - 1...3 now means 1,2,3 Implements <rdar://problem/16839891> Swift SVN r18066
This commit is contained in:
@@ -8,7 +8,7 @@ func testReallocation() {
|
||||
var laps = 1000
|
||||
|
||||
var reallocations = 0
|
||||
for i in 0...laps {
|
||||
for i in 0..laps {
|
||||
for s in x {
|
||||
var lastBase = story.core._baseAddress
|
||||
story += " "
|
||||
|
||||
Reference in New Issue
Block a user