diff options
author | Brad King <brad.king@kitware.com> | 2019-08-19 14:47:30 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-08-19 14:53:30 (GMT) |
commit | 2a865c4a19199c11e4837faa04951fc9eb6a0b77 (patch) | |
tree | cf0b9ac177d107a82c187a989cdba9417811eada /test/input | |
parent | 67e01959e94c8579e339c0d3f7acbed658950383 (diff) | |
download | CastXML-2a865c4a19199c11e4837faa04951fc9eb6a0b77.zip CastXML-2a865c4a19199c11e4837faa04951fc9eb6a0b77.tar.gz CastXML-2a865c4a19199c11e4837faa04951fc9eb6a0b77.tar.bz2 |
Output: Indicate whether an Enumeration is scoped
Fixes: #94
Diffstat (limited to 'test/input')
-rw-r--r-- | test/input/Enumeration-scoped.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/input/Enumeration-scoped.cxx b/test/input/Enumeration-scoped.cxx new file mode 100644 index 0000000..66fd9cc --- /dev/null +++ b/test/input/Enumeration-scoped.cxx @@ -0,0 +1,4 @@ +enum class start +{ + value = 1 +}; |