[nem-bug] [Nemerle 0000627]: Increment in aggument
feedback at nemerle.org
feedback at nemerle.org
Sun Feb 26 04:33:50 CET 2006
The following issue has been SUBMITTED.
======================================================================
<http://nemerle.org/bugs/view.php?id=627>
======================================================================
Reported By: VladD2
Assigned To:
======================================================================
Project: Nemerle
Issue ID: 627
Category: Compiler
Reproducibility: always
Severity: minor
Priority: normal
Status: new
======================================================================
Date Submitted: 02-26-2006 04:33 CET
Last Modified: 02-26-2006 04:33 CET
======================================================================
Summary: Increment in aggument
Description:
This example:
[code]
using System.Console;
mutable x = 0;
WriteLine("-- {0} --", x++);
WriteLine("-- {0} --", ++x);
[/code]
print:
-- --
-- --
But must print:
-- 0 --
-- 2 --
======================================================================
Issue History
Date Modified Username Field Change
======================================================================
02-26-06 04:33 VladD2 New Issue
======================================================================
More information about the bugs
mailing list