123456789101112131415161718192021 |
- discard """
- errormsg: "type mismatch: got <proc [*missing parameters*](x: int) | proc (x: string){.gcsafe.}>"
- line: 19
- """
- type
- TGeneric[T] = object
- x: int
- proc foo[B](x: int) =
- echo "foo1"
- proc foo(x: string) =
- echo "foo2"
- proc bar(x: proc (x: int)) =
- echo "bar"
- bar foo
|