mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
don't assert when a module re-exports a module and one of its symbols (#64479)
rdar://106807038
This commit is contained in:
11
test/SymbolGraph/Module/DuplicateExportedImport.swift
Normal file
11
test/SymbolGraph/Module/DuplicateExportedImport.swift
Normal file
@@ -0,0 +1,11 @@
|
||||
// RUN: %empty-directory(%t)
|
||||
// RUN: %target-swift-frontend %S/Inputs/DuplicateExportedImport/A.swift -module-name A -emit-module -emit-module-path %t/A.swiftmodule
|
||||
// RUN: %target-swift-frontend %s -module-name DuplicateExportedImport -emit-module -emit-module-path /dev/null -I %t -emit-symbol-graph -emit-symbol-graph-dir %t/
|
||||
// RUN: %FileCheck %s --input-file %t/DuplicateExportedImport.symbols.json
|
||||
|
||||
// REQUIRES: asserts
|
||||
|
||||
// CHECK-COUNT-1: "precise":"s:1A8ClassTwoC"
|
||||
|
||||
@_exported import A
|
||||
@_exported import class A.ClassTwo
|
||||
Reference in New Issue
Block a user