mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This makes sure that Cxx and CxxStdlib modules are built with consistent deployment targets for iOS Simulator and iOS Device. rdar://141232269
8 lines
192 B
Swift
8 lines
192 B
Swift
// RUN: %swift -c %s -cxx-interoperability-mode=default -target arm64-apple-ios7.0-simulator
|
|
|
|
// REQUIRES: DARWIN_SIMULATOR=ios
|
|
|
|
import Cxx
|
|
|
|
public func takesCxxType(_ s: some CxxSequence) {}
|