blob: ec608b31adaea82e01f3351ca0eb282a52f88815 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# This is a regression of the new lambda lifting; detected by Aporia
import asyncio, sockets
import os
type
Window = object
oneInstSock*: PAsyncSocket
IODispatcher*: PDispatcher
var
win: Window
proc initSocket() =
win.oneInstSock = asyncSocket()
#win.oneInstSock.handleAccept =
proc test(s: PAsyncSocket) =
var client: PAsyncSocket
proc dummy(c: PAsyncSocket) {.closure.} =
discard
client.handleRead = dummy
test(win.oneInstSock)
|