mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
16 lines
510 B
Swift
16 lines
510 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-build-swift %S/Inputs/FailedLoad/A.swift -module-name A -emit-module -emit-module-path %t/
|
|
// RUN: %target-build-swift %s -module-name FailedLoad -emit-module -I %t -emit-module-path %t/
|
|
|
|
// RUN: rm %t/A.swiftmodule
|
|
|
|
// RUN: not %target-swift-symbolgraph-extract -module-name FailedLoad -I %t -pretty-print -output-dir %t 2>&1 | %FileCheck %s
|
|
|
|
// CHECK-NOT: Emitting symbol graph for module file
|
|
|
|
import A
|
|
|
|
public struct Outer {
|
|
public var Something: A.Inner
|
|
}
|