mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
27 lines
885 B
Swift
27 lines
885 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend -emit-module -o %t %S/Inputs/ne_types.swift \
|
|
// RUN: -enable-experimental-feature Lifetimes \
|
|
// RUN: -enable-experimental-feature AddressableTypes \
|
|
// RUN: -enable-library-evolution \
|
|
// RUN: -emit-module-path %t/ne_types.swiftmodule
|
|
|
|
// RUN: %target-swift-frontend -emit-silgen -I %t %s \
|
|
// RUN: -enable-experimental-feature Lifetimes
|
|
|
|
// REQUIRES: swift_feature_Lifetimes
|
|
// REQUIRES: swift_feature_AddressableTypes
|
|
|
|
import ne_types
|
|
|
|
// Ensure no memory crashes during SILGen
|
|
|
|
struct NonEscapableFrameworkThingTests {
|
|
func example() async throws {
|
|
let ptr = UnsafeMutableRawBufferPointer.allocate(byteCount: 40, alignment: 1)
|
|
defer { ptr.deallocate() }
|
|
var something = Something(ptr: ptr)
|
|
var mutableView = something.mutableView(of: Float32.self)
|
|
var mutableSpan = mutableView.mutableSpan
|
|
}
|
|
}
|