Files
swift-mirror/test/ScanDependencies/Inputs/Swift/G.swiftinterface
Artem Chikin 7017034d20 [Dependency Scanning] Add tracking of the number of dependency queries and emit them as remarks
This change adds collection of three metrics to the scanner:
- number of Swift module lookups
- number of named Clang module lookups
- recorded number of Clang modules which were imported into a Swift module by name

It introduces '-Rdependency-scan', which acts as a super-set flag to the existing '-Rdependency-scan-cache' and adds emission of the above metrics as remarks when this flag is enabled. Followup changes will add further remarks about dependency scanner progress.
2025-12-17 12:50:33 -08:00

9 lines
171 B
Plaintext

// swift-interface-format-version: 1.0
// swift-module-flags: -module-name G -swift-version 5
#if swift(>=5.0)
@_exported import G
public func overlayFuncG() { }
#endif