type CommandId = enum
      cmdSearch
      cmdDownload
    
    type Command = object
      case id: CommandId
      of cmdSearch:
        opts: SearchOpts
      of cmdDownload:
        opts: DownloadOpts     # Error: attempt to redefine: 'v'
    
    
    
    Run

Reply via email to