Files
swift-mirror/test/Interpreter/rdar119541554.swift
Slava Pestov ab15ddad4e test/Interpreter/rdar119541554.swift requires macOS 14
Fixes rdar://119948707.
2024-01-03 16:28:22 -05:00

18 lines
346 B
Swift

// RUN: %empty-directory(%t)
// RUN: %target-build-swift %s -o %t/a.out -O -target %target-future-triple
// RUN: %target-codesign %t/a.out
// RUN: %target-run %t/a.out
// REQUIRES: executable_test
// REQUIRES: objc_interop
// UNSUPPORTED: use_os_stdlib
// UNSUPPORTED: back_deployment_runtime
struct S {
var x = 42
}
_ = [S() as Sendable]