mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
8 lines
110 B
C
8 lines
110 B
C
#include <stdint.h>
|
|
|
|
typedef struct foo {
|
|
uint8_t a;
|
|
uint16_t b;
|
|
uint8_t tailallocatedarray[0];
|
|
} foo;
|