mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
With the acceptance of SE-0458, allow the use of unsafe expressions, the @safe and @unsafe attributes, and the `unsafe` effect on the for..in loop in all Swift code. Introduce the `-strict-memory-safety` flag detailed in the proposal to enable strict memory safety checking. This enables a new class of feature, an optional feature (that is *not* upcoming or experimental), and which can be detected via `hasFeature(StrictMemorySafety)`.
11 lines
423 B
Swift
11 lines
423 B
Swift
// RUN: %empty-directory(%t)
|
|
|
|
// RUN: %target-swift-frontend -swift-version 5 -enable-library-evolution -module-name unsafe -emit-module -o %t/unsafe.swiftmodule -emit-module-interface-path - %s | %FileCheck %s
|
|
|
|
// CHECK: #if compiler(>=5.3) && $MemorySafetyAttributes
|
|
// CHECK: @unsafe public func testFunction()
|
|
// CHECK: #else
|
|
// CHECK: public func testFunction()
|
|
// CHECK: #endif
|
|
@unsafe public func testFunction() { }
|