summaryrefslogtreecommitdiff
path: root/tests/headers
diff options
context:
space:
mode:
authorAdrian Taylor <adetaylor@chromium.org>2021-05-18 06:51:52 -0700
committerGitHub <noreply@github.com>2021-05-18 15:51:52 +0200
commitb60339ece3994868a55889b7f1f6043ab29ba30e (patch)
treee2663e59f133f79c5f776f6630e2fed4dcd65e0e /tests/headers
parente6684dc5c56d0283b9c14b34f68d445e9d5a580f (diff)
Identify forward declarations in params. (#2052)
Diffstat (limited to 'tests/headers')
-rw-r--r--tests/headers/parm-union.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/headers/parm-union.hpp b/tests/headers/parm-union.hpp
new file mode 100644
index 00000000..e36df691
--- /dev/null
+++ b/tests/headers/parm-union.hpp
@@ -0,0 +1,4 @@
+struct Struct
+{
+ void Function(union Union&);
+};