mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
I'm not sure why this didn't occur to me in 8282160d: of course if you
see a generic type with arguments, you need to see the @interface for
that type in order to supply the arguments. Maybe I was thinking the
generated interface would automatically import anything the module
itself imports, but that hasn't ever been true.
rdar://problem/28738008
7 lines
191 B
Objective-C
7 lines
191 B
Objective-C
// This file is meant to be included with modules turned off, compiled against
|
|
// the fake clang-importer-sdk.
|
|
#import <Foundation.h>
|
|
|
|
@interface SingleImportedObjCGeneric<A> : NSObject
|
|
@end
|