mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
10 lines
352 B
Swift
10 lines
352 B
Swift
// RUN: %empty-directory(%t.module-cache)
|
|
// RUN: %target-swift-frontend -scan-dependencies -module-cache-path %t.module-cache %s -o %t.deps.json -I %S/Inputs/CHeaders -verify
|
|
|
|
// RUN: %validate-json %t.deps.json | %FileCheck %s
|
|
// CHECK: "clang": "X_Private"
|
|
// CHECK: "clang": "Y"
|
|
// CHECK-NOT: "clang": "Y_Private"
|
|
import X.Private
|
|
import Y.Private
|