summary refs log tree commit diff stats
path: root/tests/closure/texplicit_dummy_closure.nim
blob: 02b9ac7c78c58c6d42f541a8ce55e1cc5fe0f851 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
discard """
  disabled: true
"""

# This is a regression of the new lambda lifting; detected by Aporia
import asyncio, sockets
import os

type
  Window = object
    oneInstSock*: AsyncSocket
    IODispatcher*: Dispatcher

var
  win: Window

proc initSocket() =
  win.oneInstSock = asyncSocket()
  #win.oneInstSock.handleAccept =
  proc test(s: AsyncSocket) =
    var client: AsyncSocket
    proc dummy(c: AsyncSocket) {.closure.} =
      discard
    client.handleRead = dummy
  test(win.oneInstSock)