When I compile with --hotCodeReloading:on I encounter an error:
    
    
    /Users/user/.nimble/pkgs/chronicles-0.10.0/chronicles/options.nim(146, 21) 
Error: type mismatch: got <string, proc (c: char): bool{.cdecl, noSideEffect, 
gcsafe.}>
    but expected one of:
    proc all[T](s: openArray[T]; pred: proc (x: T): bool {.closure.}): bool
      first type mismatch at position: 2
      required type for pred: proc (x: T): bool{.closure.}
      but expression 'isDigit' is of type: proc (c: char): bool{.cdecl, 
noSideEffect, gcsafe.}
    
    expression: all(values[1], isDigit)
    
    
    Run

The chronicles modules fails to compile, but is the problem with Nim's compiler 
or chronicles?

Reply via email to