diff options
-rw-r--r-- | compiler/transf.nim | 4 | ||||
-rw-r--r-- | tests/modules/tmismatchedvisibility.nim | 2 | ||||
-rw-r--r-- | tests/tuples/t9177.nim | 1 |
3 files changed, 4 insertions, 3 deletions
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]) diff --git a/tests/modules/tmismatchedvisibility.nim b/tests/modules/tmismatchedvisibility.nim index fd582b571..a61b28071 100644 --- a/tests/modules/tmismatchedvisibility.nim +++ b/tests/modules/tmismatchedvisibility.nim @@ -1,5 +1,5 @@ discard """ - errormsg: "public implementation 'tmismatchedvisibility.foo(a: int)[declared in tmismatchedvisibility.nim(6, 6)]' has non-public forward declaration in " + errormsg: "public implementation 'tmismatchedvisibility.foo(a: int) [declared in tmismatchedvisibility.nim(6, 6)]' has non-public forward declaration in " line: 8 """ diff --git a/tests/tuples/t9177.nim b/tests/tuples/t9177.nim index e6dd0cb1d..d5768b703 100644 --- a/tests/tuples/t9177.nim +++ b/tests/tuples/t9177.nim @@ -1,5 +1,6 @@ discard """ action: run + disabled: true """ block: |