You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I get error the following when compiling a nim file containing identical code to the first example given in the README:
/home/<me>/kohn/kohn.nim(27, 22) Error: type mismatch: got <MongoBase>
but expected one of:
proc connect(socket: AsyncFD; address: string; port: Port; domain = Domain.AF_INET): owned(
Future[void])
first type mismatch at position: 1
required type for socket: AsyncFD
but expression 'm' is of type: MongoBase
proc connect(am: AsyncMongo): Future[bool]
first type mismatch at position: 1
required type for am: AsyncMongo
but expression 'm' is of type: MongoBase
proc connect(m: Mongo): bool
first type mismatch at position: 1
required type for m: Mongo
but expression 'm' is of type: MongoBase
expression: connect(m)
To Reproduce
Ensure that you are using Nim 1.0.2
Compile the example code given (substitute in collections)
Expected behavior
It should compile without error.
Desktop:
OS: Manjaro Linux
Version 1.0.2
The text was updated successfully, but these errors were encountered:
Describe the bug
I get error the following when compiling a nim file containing identical code to the first example given in the README:
To Reproduce
Expected behavior
It should compile without error.
Desktop:
The text was updated successfully, but these errors were encountered: