mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Additional shimming required for some builds, as well as a few other build related tweaks. rdar://106234311
12 lines
328 B
Swift
12 lines
328 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: ( %target-build-swift %s -o %t/NotImportedByDefault || true ) 2>&1 | %FileCheck %s
|
|
|
|
// Windows chokes on the parens in the above expression
|
|
// UNSUPPORTED: OS=windows-msvc
|
|
|
|
// REQUIRES: backtracing
|
|
|
|
let backtrace = try! Backtrace.capture()
|
|
|
|
// CHECK: error: cannot find 'Backtrace' in scope
|