I don't think any valid C program can contain `<=>` in a tokenisable context, but it's more helpful to fail with a syntax error at SWIG parse time and not potentially generate C code trying to use `<=>` in an expression which then fails at compile time.
3 lines
31 B
OpenEdge ABL
3 lines
31 B
OpenEdge ABL
%module xxx
|
|
|
|
int a[(1<=>2>1)];
|