Files
swift-mirror/test/ClangImporter/Inputs/custom-modules/ForwardDeclarationsHelper.h
Jordan Rose 05d0a2dfef [Serialization] Mark decls that can never be cross-referenced (#17223)
This allows us to filter them out in cases that would otherwise be
ambiguous. The particular prompting situation looks a lot like the
test case: a protocol, plus a forward-declared class with the same
name. (Normally we ignore forward-declared classes, but SourceKit's
module interface generation feature makes dummy ClassDecls for them
instead.)

https://bugs.swift.org/browse/SR-4851
2018-06-18 10:50:35 -07:00

5 lines
44 B
Objective-C

@class Confusing;
@protocol Confusing
@end