We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8321a28 + 71efee6 commit f877d0bCopy full SHA for f877d0b
CHANGELOG.md
@@ -11,8 +11,8 @@ Swift 3.0
11
@noreturn func fatalError(msg: String) { ... } // old
12
func fatalError(msg: String) -> Never { ... } // new
13
14
- func performOperation<T>(continuation: T -> Never) { ... } // old
15
- func performOperation<T>(continuation: @noreturn T -> ()) { ... } // new
+ func performOperation<T>(continuation: @noreturn T -> ()) { ... } // old
+ func performOperation<T>(continuation: T -> Never) { ... } // new
16
```
17
18
* [SE-0116](https://github.com/apple/swift-evolution/blob/master/proposals/0116-id-as-any.md):
0 commit comments