mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
30 lines
1.0 KiB
Swift
30 lines
1.0 KiB
Swift
// RUN: %empty-directory(%t)
|
|
|
|
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -typecheck -verify %s -DIMPORT_TOP_LEVEL
|
|
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -typecheck -verify %s
|
|
|
|
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -emit-module-path %t/submodules.swiftmodule %s -DNO_ERRORS
|
|
// RUN: echo 'import submodules; let s = "\(x), \(y)"' | %target-swift-frontend(mock-sdk: %clang-importer-sdk) -typecheck - -I %t
|
|
// RUN: echo 'import submodules; let s = "\(x), \(y)"' | not %target-swift-frontend -typecheck - -I %t 2>&1 | %FileCheck -check-prefix=MISSING %s
|
|
|
|
#if IMPORT_TOP_LEVEL
|
|
import ctypes
|
|
#endif
|
|
|
|
import ctypes.bits
|
|
// MISSING: missing required modules:
|
|
// MISSING-DAG: 'ctypes.bits'
|
|
// MISSING-DAG: 'ctypes'
|
|
|
|
// From bits submodule
|
|
public var x : DWORD = MY_INT
|
|
public var y : CInt = x
|
|
|
|
let _: ctypes.DWORD = ctypes.MY_INT
|
|
let _: ctypes.Color?
|
|
|
|
// Error: "bits" should not be a valid name in this scope.
|
|
#if !NO_ERRORS
|
|
let _: bits.DWORD = 0 // expected-error {{cannot find type 'bits' in scope}}
|
|
#endif
|