diff options
| author | Brad King <brad.king@kitware.com> | 2015-06-08 16:49:44 (GMT) |
|---|---|---|
| committer | Brad King <brad.king@kitware.com> | 2015-06-08 16:49:44 (GMT) |
| commit | c97aef7dd5919db271fdf4d6abe7419a2105bbbd (patch) | |
| tree | 89a0b9f02c5764896eb974465f511088e3fe4c84 /test/input | |
| parent | c113a2b0a0c931f0a83a3cc27f13fd34687a92c0 (diff) | |
| download | CastXML-c97aef7dd5919db271fdf4d6abe7419a2105bbbd.zip CastXML-c97aef7dd5919db271fdf4d6abe7419a2105bbbd.tar.gz CastXML-c97aef7dd5919db271fdf4d6abe7419a2105bbbd.tar.bz2 | |
test: Add case for nested namespaces
Diffstat (limited to 'test/input')
| -rw-r--r-- | test/input/Namespace-nested.cxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/input/Namespace-nested.cxx b/test/input/Namespace-nested.cxx new file mode 100644 index 0000000..495208f --- /dev/null +++ b/test/input/Namespace-nested.cxx @@ -0,0 +1,11 @@ +namespace start { + namespace ns1 { + void f1(); + } + namespace ns2 { + void f2(); + } + namespace ns3 { + void f3(); + } +} |
