Files
swift-mirror/test/ClangImporter/MixedSource/Inputs/forward-declarations.h
Jordan Rose 1327d38436 Add test case for problem found by rdar://problem/43312726 (#18855)
This was fixed by Doug's work in e15f67e453. It isn't actually the
underlying problem in rdar://problem/43312726, but it's worth
recording the test case so we don't regress.
2018-08-20 16:40:37 -07:00

6 lines
111 B
Objective-C

@class ClassInOtherFile;
@interface Base
- (ClassInOtherFile *)getClassInstanceWithoutMentioningItsName;
@end