PageRenderTime 26ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Examples/test-suite/errors/pp_macro_inline_unterminated.i

#
Swig | 11 lines | 9 code | 2 blank | 0 comment | 0 complexity | a40936badb2714073bd0ef1962c6084c MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. %module xxx
  2. %define foo(a,x)
  3. int ii;
  4. %enddef
  5. %inline %{
  6. struct Struct {
  7. foo(2,
  8. };
  9. %}