mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
14 lines
459 B
Swift
14 lines
459 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: echo 'public func externalFunc() {}' | %target-swift-frontend -typecheck -emit-module-interface-path %t/Library.swiftinterface -
|
|
// RUN: %target-swift-frontend -typecheck %s -I %t
|
|
|
|
#if canImport(Library)
|
|
import Library
|
|
externalFunc()
|
|
#else
|
|
#error("unable to import Library from its parseable interface")
|
|
#endif
|
|
|
|
#if canImport(LibraryThatDoesNotExist)
|
|
#error("should not return true for library that does not exist")
|
|
#endif |