From e2bab8d4be0805bf22f7295be2014a39d1e18535 Mon Sep 17 00:00:00 2001 From: qunyanm Date: Thu, 3 Dec 2015 11:14:28 -0800 Subject: Fix issue 113. Make sure the tempVar name used in ToString() method doesn't collide with the names of its formals. --- Test/dafny4/Bug113.dfy | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Test/dafny4/Bug113.dfy (limited to 'Test/dafny4/Bug113.dfy') diff --git a/Test/dafny4/Bug113.dfy b/Test/dafny4/Bug113.dfy new file mode 100644 index 00000000..8f5ddf9f --- /dev/null +++ b/Test/dafny4/Bug113.dfy @@ -0,0 +1,10 @@ +// RUN: %dafny /compile:3 "%s" > "%t" +// RUN: %diff "%s.expect" "%t" + +datatype D = D(q:int, r:int, s:int, t:int) + +method Main() +{ + print D(10, 20, 30, 40); + print "\n"; +} \ No newline at end of file -- cgit v1.2.3