Looks like `{.experimental: "codeReordering".}` doesn't work on devel for some 
reason. I tried 1.2.6 and it worked fine. Might want to open a Nim defect on 
that.

Meanwhile, since this is a simple case, you can also just do:
    
    
    static:
      cSkipSymbol(@["apr_size_t"])
    
    type
      apr_size_t* {.importc.} = uint
    
    
    Run

Before your `cImport()` call and it should work.

Reply via email to