mirror of
https://github.com/apple/swift.git
synced 2026-06-27 12:25:55 +02:00
f8c6174578
Suppress Swift warnings (unresolvable_clang_decl) when generating precompiled modules for system frameworks. rdar://170174282
11 lines
296 B
C
11 lines
296 B
C
#ifndef SYSTEM_MODULE_WITH_WARNINGS_H
|
|
#define SYSTEM_MODULE_WITH_WARNINGS_H
|
|
|
|
// Test NS_SWIFT_NAME warning suppression (unresolvable_clang_decl)
|
|
typedef enum {
|
|
TestValue1,
|
|
TestValue2
|
|
} TestEnum __attribute__((swift_name("NonExistentType.TestEnum")));
|
|
|
|
#endif // SYSTEM_MODULE_WITH_WARNINGS_H
|