blob: abe4549055c601823de6cd9fb971b1b2366c2677 [file] [log] [blame]
Akira Hatanakaceb66522018-03-13 23:37:51 +00001#ifndef STRONG_IN_UNION_H
2#define STRONG_IN_UNION_H
3#pragma clang system_header
4
5typedef union {
6 id f0;
7 int *f1;
8} U;
9
10#endif // STRONG_IN_UNION_H