Files
swift-mirror/test/SourceKit/Inputs/CrossImport/_OtherCAdditions.swift
Nathan Hawes 9f6f76308e Add method to ModuleDecl to lazily compute the underlying module for cross-import overlays
Also update code completion, indexing, interface generation and doc info to use it.
2020-04-03 16:04:32 -07:00

13 lines
348 B
Swift

@_exported import Other
@_exported import A
import B
import C
@available(*, unavailable)
public func filtered() {}
/// This has some interesting documentation that shouldn't be separated from
/// the decl when we print the comment detailing its required bystanders in the
/// generated interface of 'Other'.
public func from_OtherCAdditions() {}