PageRenderTime 21ms CodeModel.GetById 14ms app.highlight 6ms RepoModel.GetById 1ms app.codeStats 0ms

/tags/rel-1.3.35/Examples/test-suite/errors/cpp_namespace_alias.i

#
Swig | 14 lines | 6 code | 8 blank | 0 comment | 0 complexity | 6f68a17530cc4ca23245804f474d592f MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
 1%module xxx
 2
 3namespace blah {
 4}
 5
 6namespace B = blah;
 7
 8namespace B {
 9}
10
11
12
13
14