mirror of
https://github.com/apple/swift.git
synced 2026-02-27 18:26:24 +01:00
12 lines
169 B
C
12 lines
169 B
C
struct extern_struct {
|
|
int field : 1;
|
|
};
|
|
|
|
typedef enum ext_enum {
|
|
p, q, r
|
|
} extern_enum;
|
|
|
|
static inline int extern_inline_function(int a, int b) {
|
|
return a + b;
|
|
}
|