summaryrefslogtreecommitdiff
path: root/tests/headers/ref_argument_array.hpp
diff options
context:
space:
mode:
authorEmilio Cobos Álvarez <ecoal95@gmail.com>2016-08-15 13:05:45 -0700
committerEmilio Cobos Álvarez <ecoal95@gmail.com>2016-08-15 13:08:22 -0700
commit52fd1771877b6f8a81b47edc08313f56e50c5d96 (patch)
tree54ff01c464fe010c435db43c2a43ec5f751e814f /tests/headers/ref_argument_array.hpp
parentf3ce8f26a08b28a0f6b6d2936c2c2676f200c63a (diff)
parser: If we find no declarations, check for primitive type before going down the hack version.
Diffstat (limited to 'tests/headers/ref_argument_array.hpp')
-rw-r--r--tests/headers/ref_argument_array.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/headers/ref_argument_array.hpp b/tests/headers/ref_argument_array.hpp
new file mode 100644
index 00000000..dc73fd62
--- /dev/null
+++ b/tests/headers/ref_argument_array.hpp
@@ -0,0 +1,6 @@
+
+#define NSID_LENGTH 10
+class nsID {
+public:
+ virtual void ToProvidedString(char (&aDest)[NSID_LENGTH]) = 0;
+};