source: tests/linking/mangling/header.hfa @ d4c8b59

ADTast-experimental
Last change on this file since d4c8b59 was d4c8b59, checked in by Thierry Delisle <tdelisle@…>, 17 months ago

Added test that stresses more how we link anonymous types

  • Property mode set to 100644
File size: 232 bytes
Line 
1#pragma once
2
3typedef struct /* anonymous */ {
4        int some_int;
5        float a_float;
6} name_but_a_typedefed_t;
7
8extern name_but_a_typedefed_t a_typedefed_global;
9
10extern struct {
11        int some_int;
12        int some_other_int;
13} a_global_with_no_type;
Note: See TracBrowser for help on using the repository browser.