summaryrefslogtreecommitdiff
path: root/Source/Dafny/Parser.cs
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2013-07-25 10:21:09 -0700
committerGravatar wuestholz <unknown>2013-07-25 10:21:09 -0700
commit9cc1b3fffb95ee2e4f0db1d165bdc5c6569f4a32 (patch)
treeffc8ac0a7cde0e1c034e8be992589ecedce8c7e3 /Source/Dafny/Parser.cs
parent65e7dd90625383312474304049915629e07a0a28 (diff)
Fixed build failure.
Diffstat (limited to 'Source/Dafny/Parser.cs')
-rw-r--r--Source/Dafny/Parser.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Dafny/Parser.cs b/Source/Dafny/Parser.cs
index e888dac9..daf3763c 100644
--- a/Source/Dafny/Parser.cs
+++ b/Source/Dafny/Parser.cs
@@ -984,7 +984,7 @@ bool IsParenStar() {
Contract.Ensures(Contract.ValueAtReturn(out id)!=null);
Contract.Ensures(Contract.ValueAtReturn(out ty)!=null);
Contract.Ensures(Contract.ValueAtReturn(out identName)!=null);
- string name = null; isGhost = false;
+ string name = null; id = Token.NoToken; ty = null; isGhost = false;
if (la.kind == 22) {
Get();
isGhost = true;