diff options
author | Brad King <brad.king@kitware.com> | 2018-03-21 15:40:46 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-03-21 17:05:37 (GMT) |
commit | 3e8b3aea3a3bd3724b6940d0b62e36d07d46075d (patch) | |
tree | eeaafbde6d4b9b278ff7b214566d23d78e91d8b4 /test/input | |
parent | dd2ca8bdb6025e4334ba935cddfa365b224c55ec (diff) | |
download | CastXML-3e8b3aea3a3bd3724b6940d0b62e36d07d46075d.zip CastXML-3e8b3aea3a3bd3724b6940d0b62e36d07d46075d.tar.gz CastXML-3e8b3aea3a3bd3724b6940d0b62e36d07d46075d.tar.bz2 |
test: Add case covering multi-dimensional arrays in function arguments
Only the top-level decays.
Diffstat (limited to 'test/input')
-rw-r--r-- | test/input/Function-Argument-decay.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/input/Function-Argument-decay.cxx b/test/input/Function-Argument-decay.cxx index 1b2e3d1..ec79533 100644 --- a/test/input/Function-Argument-decay.cxx +++ b/test/input/Function-Argument-decay.cxx @@ -1 +1 @@ -void start(int[2], int[], int(int)); +void start(int[4][3], int[2], int[], int(int)); |