https://issues.dlang.org/show_bug.cgi?id=24291
anonymous4 <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- URL| |https://forum.dlang.org/pos | |t/woaixickqgqvfsazutex@foru | |m.dlang.org --- Comment #2 from anonymous4 <[email protected]> --- >From forum discussion: --- One Problem with Janet is that it uses computed gotos which is a gcc extension The code it complains about looks like: ```C /* opcode -> label lookup if using clang/GCC */ #ifdef JANET_USE_COMPUTED_GOTOS static void *op_lookup[255] = { &&label_JOP_NOOP, &&label_JOP_ERROR, ``` As you can see &&label is not valid C11. Which is what the import C parser complains about. --- Maybe something can be done there with that JANET_USE_COMPUTED_GOTOS define. --
