1 | #ifndef STRONG_IN_UNION_H |
---|---|
2 | #define STRONG_IN_UNION_H |
3 | #pragma clang system_header |
4 | |
5 | typedef union { |
6 | id f0; |
7 | int *f1; |
8 | } U; |
9 | |
10 | #endif // STRONG_IN_UNION_H |
11 |
1 | #ifndef STRONG_IN_UNION_H |
---|---|
2 | #define STRONG_IN_UNION_H |
3 | #pragma clang system_header |
4 | |
5 | typedef union { |
6 | id f0; |
7 | int *f1; |
8 | } U; |
9 | |
10 | #endif // STRONG_IN_UNION_H |
11 |