mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Similar to what we do for 'throws' checking, perform argument-specific
checking for unsafe call arguments. This provides more detailed failures:
```
example.swift:18:3: warning: expression uses unsafe constructs but is not
marked with 'unsafe' [#StrictMemorySafety]
16 | x.f(a: 0, b: 17, c: nil)
17 |
18 | x.f(a: 0, b: 17, c: &i)
| | `- note: argument 'c' in call to instance
method 'f' has unsafe type 'UnsafePointer<Int>?'
| `- warning: expression uses unsafe constructs but is not marked
with 'unsafe' [#StrictMemorySafety]
19 | unsafeF()
20 | }
```
It also means that we won't complain for `nil` or `Optional.none`
arguments passed to unsafe types, which eliminates some false
positives, and won't complain about unsafe result types when there is
a call---because we'd still get complaints later about the
actually-unsafe bit, which is using those results.
Fixes rdar://149629670.
(cherry picked from commit ee9487b86f)
43 lines
1.8 KiB
Swift
43 lines
1.8 KiB
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend -emit-module-path %t/unsafe_swift_decls.swiftmodule %S/Inputs/unsafe_swift_decls.swift
|
|
|
|
// RUN: %target-typecheck-verify-swift -strict-memory-safety -I %S/Inputs -I %t
|
|
|
|
import unsafe_decls
|
|
import unsafe_swift_decls
|
|
|
|
func testUnsafe(_ ut: UnsafeType) {
|
|
// expected-warning@+1{{expression uses unsafe constructs but is not marked with 'unsafe'}}{{3-3=unsafe }}
|
|
unsafe_c_function() // expected-note{{reference to unsafe global function 'unsafe_c_function()'}}
|
|
|
|
var array: [CInt] = [1, 2, 3, 4, 5]
|
|
// expected-warning@+1{{expression uses unsafe constructs but is not marked with 'unsafe'}}{{3-3=unsafe }}
|
|
print_ints(&array, CInt(array.count))
|
|
// expected-note@-1{{argument #0 in call to global function 'print_ints' has unsafe type 'UnsafeMutablePointer<Int32>?'}}
|
|
|
|
// expected-warning@+1{{expression uses unsafe constructs but is not marked with 'unsafe'}}{{7-7=unsafe }}
|
|
_ = print_ints // expected-note{{reference to global function 'print_ints' involves unsafe type 'UnsafeMutablePointer<Int32>'}}
|
|
}
|
|
|
|
// Reference a typealias that isn't itself @unsafe, but refers to an unsafe
|
|
// type.
|
|
|
|
func testUnsafeThroughAlias(_ ut: UnsafeTypeAlias) {
|
|
|
|
}
|
|
|
|
func callThroughAlias(ut: UnsafeTypeAlias) {
|
|
// expected-warning@+1{{expression uses unsafe constructs but is not marked with 'unsafe'}}
|
|
testUnsafeThroughAlias(ut) // expected-note{{argument #0 in call to global function 'testUnsafeThroughAlias' has unsafe type 'UnsafeTypeAlias' (aka 'PointerType')}}
|
|
// expected-note@-1{{reference to parameter 'ut' involves unsafe type 'UnsafeTypeAlias' (aka 'PointerType')}}
|
|
}
|
|
|
|
|
|
struct ConformsToUnsafeRequirement: HasUnsafeRequirement {
|
|
@unsafe func f(_: PointerType) { }
|
|
}
|
|
|
|
class SubclassWithUnsafeMethod: SuperclassWithUnsafeMethod {
|
|
@unsafe override func implicitlyUnsafe(_: PointerType) { }
|
|
}
|