Clang Project

clang_source_code/test/CodeGenObjC/Inputs/strong_in_union.h
1#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
11