summaryrefslogtreecommitdiff
path: root/Binaries
diff options
context:
space:
mode:
authorGravatar Unknown <leino@LEINO6.redmond.corp.microsoft.com>2012-06-14 13:35:11 -0700
committerGravatar Unknown <leino@LEINO6.redmond.corp.microsoft.com>2012-06-14 13:35:11 -0700
commit4d5757e19265d5e065a1b3848beab1c583a40a4c (patch)
tree8551b88136a60db325c3b9ab7914859cdb914dfe /Binaries
parent904420332a82fb0750fff2a34f70fe4e8868543c (diff)
Dafny: fixed a couple of compiler bugs
Diffstat (limited to 'Binaries')
-rw-r--r--Binaries/DafnyRuntime.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Binaries/DafnyRuntime.cs b/Binaries/DafnyRuntime.cs
index f7eecfc5..61df448f 100644
--- a/Binaries/DafnyRuntime.cs
+++ b/Binaries/DafnyRuntime.cs
@@ -1,8 +1,9 @@
using System.Numerics;
-using System.Collections.Generic;
namespace Dafny
{
+ using System.Collections.Generic;
+
public class Set<T>
{
Dictionary<T, bool> dict;