mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
19 lines
471 B
Swift
19 lines
471 B
Swift
// RUN: %target-run-simple-swift
|
|
// REQUIRES: executable_test
|
|
|
|
// https://github.com/apple/swift/issues/58199
|
|
// Error when referencing #dsohandle in a Swift test on Windows
|
|
//
|
|
// This file tests that #dsohandle is fully usable from the built test. The
|
|
// precise value of #dsohandle is uninteresting.
|
|
|
|
import StdlibUnittest
|
|
|
|
var tests = TestSuite("#dsohandle usable")
|
|
|
|
tests.test("#dsohandle usable") {
|
|
expectNotNil(#dsohandle as UnsafeRawPointer?)
|
|
}
|
|
|
|
runAllTests()
|