removed flawed thread analysis pass

This commit is contained in:
Araq
2014-04-20 14:00:04 +02:00
parent 39e4e3f205
commit be6474af63
17 changed files with 23 additions and 476 deletions

View File

@@ -1,18 +1,18 @@
discard """
line: 18
errormsg: "type mismatch: got (proc (TScgi) | proc (PAsyncSocket, PStringTable, string))"
errormsg: "type mismatch: got (proc (TScgi) | proc (PAsyncSocket, PStringTable, string){.gcsafe.})"
"""
#bug #442
import scgi, sockets, asyncio, strtabs
proc handleSCGIRequest[TScgi: TScgiState | PAsyncScgiState](s: TScgi) =
nil
discard
proc handleSCGIRequest(client: PAsyncSocket, headers: PStringTable,
input: string) =
nil
discard
proc test(handle: proc (client: PAsyncSocket, headers: PStringTable,
input: string), b: int) =
nil
discard
test(handleSCGIRequest)