mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
24 lines
778 B
Nim
24 lines
778 B
Nim
discard """
|
|
errormsg: "type mismatch: got <proc (s: TScgi: ScgiState or AsyncScgiState) | proc (client: AsyncSocket, headers: StringTableRef, input: string){.noSideEffect, gcsafe, locks: 0.}>"
|
|
line: 23
|
|
"""
|
|
|
|
# Fake ScgiState objects, from now-deprecated scgi module
|
|
type
|
|
ScgiState* = object of RootObj ## SCGI state object
|
|
AsyncScgiState* = object of RootObj ## SCGI state object
|
|
|
|
#bug #442
|
|
import asyncnet, strtabs
|
|
proc handleSCGIRequest[TScgi: ScgiState | AsyncScgiState](s: TScgi) =
|
|
discard
|
|
proc handleSCGIRequest(client: AsyncSocket, headers: StringTableRef,
|
|
input: string) =
|
|
discard
|
|
|
|
proc test(handle: proc (client: AsyncSocket, headers: StringTableRef,
|
|
input: string), b: int) =
|
|
discard
|
|
|
|
test(handleSCGIRequest)
|