From 444f2231c9b48c34f9bec2ce6cfa3de5ae2560b1 Mon Sep 17 00:00:00 2001 From: Andreas Rumpf Date: Fri, 8 Feb 2019 16:54:12 +0100 Subject: make tests green again --- compiler/transf.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compiler') diff --git a/compiler/transf.nim b/compiler/transf.nim index 40cf70ff7..071cb00ee 100644 --- a/compiler/transf.nim +++ b/compiler/transf.nim @@ -981,8 +981,8 @@ proc transform(c: PTransf, n: PNode): PTransNode = result = transformYield(c, n) else: result = transformSons(c, n) - of nkAsgn: - result = transformAsgn(c, n) + #of nkAsgn: + # result = transformAsgn(c, n) of nkIdentDefs, nkConstDef: result = PTransNode(n) result[0] = transform(c, n[0]) -- cgit 1.4.1-2-gfad0 '7dfadb8b4e95d09981fbeb01d85b12f23946c3e7'>this commit This repository contains the Nim compiler, Nim's stdlib, tools, and documentation. (mirror)ahoang <ahoang@tilde.institute>
summary refs log tree commit diff stats
path: root/tests/misc/tissue710.nim
blob: 3b6d3e5f35250fd51474385f34de722a6f7f9fba (plain) (blame)
1
2
3
4
5
6
7
8
9
10