/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

  1. %module xxx
  2. %define foo(a,x)
  3. int ii;
  4. %enddef
  5. %inline %{
  6. struct Struct {
  7. foo(2,
  8. };
  9. %}