diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2017-02-08 06:49:51 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-08 06:49:51 -0800 |
commit | ddfa1e049917ad1caed834ebaf9fcfd1636dbfb9 (patch) | |
tree | def5ca75fc7880c77d51b1009c81ddb686bae3d4 /tests/headers/use-core.h | |
parent | 8264afa875d686688680123859f8820e19c8028c (diff) | |
parent | 60361505fbce24fb564edc56e1b9bb7299932457 (diff) |
Auto merge of #489 - emilio:use-core, r=fitzgen
codegen: Fix remaining cases of missing core prefix.
Fixes #488
r? @fitzgen
Diffstat (limited to 'tests/headers/use-core.h')
-rw-r--r-- | tests/headers/use-core.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/headers/use-core.h b/tests/headers/use-core.h index 42bb10d9..0e8a8d6e 100644 --- a/tests/headers/use-core.h +++ b/tests/headers/use-core.h @@ -5,4 +5,9 @@ struct foo { void* bar; }; +union { + int bar; + long baz; +} bazz; + typedef void (*fooFunction)(int bar); |