diff options
Diffstat (limited to 'tests/headers/redeclaration.hpp')
-rw-r--r-- | tests/headers/redeclaration.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/headers/redeclaration.hpp b/tests/headers/redeclaration.hpp new file mode 100644 index 00000000..d536b158 --- /dev/null +++ b/tests/headers/redeclaration.hpp @@ -0,0 +1,7 @@ +extern "C" { + void foo(); +} + +extern "C" { + void foo(); +} |