You can use pure inheritable, which will remove that header:
    
    
    type
      Foo {.pure inheritable.} = object
        i: int
      
      Bar = object of Foo
        j: int
    

Reply via email to