forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathIntegerRenames3.swift
37 lines (31 loc) · 1.94 KB
/
IntegerRenames3.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// RUN: %target-typecheck-verify-swift -swift-version 3
func f<T : SignedInteger>(x: T) {
_ = T.addWithOverflow(x, x) // expected-error {{'addWithOverflow' is unavailable: Please use FixedWidthInteger protocol as a generic constraint and addingReportingOverflow(_:) method instead.}}
_ = T.subtractWithOverflow(x, x) // expected-error {{'subtractWithOverflow' is unavailable: Please use FixedWidthInteger protocol as a generic constraint and subtractingReportingOverflow(_:) method instead.}}
_ = T.multiplyWithOverflow(x, x) // expected-error {{'multiplyWithOverflow' is unavailable: Please use FixedWidthInteger protocol as a generic constraint and multipliedReportingOverflow(by:) method instead.}}
_ = T.divideWithOverflow(x, x) // expected-error {{'divideWithOverflow' is unavailable: Please use FixedWidthInteger protocol as a generic constraint and dividedReportingOverflow(by:) method instead.}}
_ = T.remainderWithOverflow(x, x) // expected-error {{'remainderWithOverflow' is unavailable: Please use FixedWidthInteger protocol as a generic constraint and remainderReportingOverflow(dividingBy:) method instead.}}
}
func f<T : FixedWidthInteger>(x: T) {
_ = T.addWithOverflow(x, x) // no error
_ = T.subtractWithOverflow(x, x) // no error
_ = T.multiplyWithOverflow(x, x) // no error
_ = T.divideWithOverflow(x, x) // no error
_ = T.remainderWithOverflow(x, x) // no error
}
do {
let _: IntMax = 0 // no error
let _: UIntMax = 0 // no error
}
func integer<T : Integer>(x: T) {} // no error
func integerArithmetic<T : IntegerArithmetic>(x: T) {} // no error
func signedNumber<T : SignedNumber>(x: T) {} // no error
func absoluteValuable<T : AbsoluteValuable>(x: T) {} // no error
func _signedInteger<T : _SignedInteger>(x: T) {} // no error
func absolutaValuable<T : SignedNumeric & Comparable>(x: T) {
_ = T.abs(x) // no error
}
func signedIntegerMaskingArithmetics<T : SignedInteger>(x: T) {
_ = x &+ x // no error
_ = x &- x // no error
}