From b1c865a656d6ee422f7d841a1e881874766a2b77 Mon Sep 17 00:00:00 2001 From: EXetoC Date: Sun, 4 May 2014 01:52:42 +0200 Subject: Fix #1170. --- tests/async/tasyncdiscard.nim | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 tests/async/tasyncdiscard.nim (limited to 'tests') diff --git a/tests/async/tasyncdiscard.nim b/tests/async/tasyncdiscard.nim new file mode 100644 index 000000000..48d8a8c4d --- /dev/null +++ b/tests/async/tasyncdiscard.nim @@ -0,0 +1,39 @@ +discard """ + output: ''' +1 +2 +3 +4 +1 +2 +1 +6 +''' +""" +import asyncio, asyncdispatch, asyncnet + +proc main {.async.} = + proc f: PFuture[int] {.async.} = + discard + echo 1 + discard + result = 2 + discard + + let x = await f() + echo x + echo 3 + + proc g: PFuture[int] {.async.} = + discard + echo 4 + discard + result = 6 + discard + echo await f() + discard await f() + + discard await g() + echo 6 + +main() -- cgit 1.4.1-2-gfad0 class='sub'>This repository contains the Nim compiler, Nim's stdlib, tools, and documentation. (mirror)ahoang <ahoang@tilde.institute>
summary refs log blame commit diff stats
path: root/tests/run/tfloat3.nim
blob: 4382dd3eda97e36fb4d7b79cce449bbbdab047cc (plain) (tree)
1
2
3
4