From 48731a5c9679efa8bcf7920c279108927a85f2f1 Mon Sep 17 00:00:00 2001 From: Ally Donaldson Date: Mon, 22 Jul 2013 22:27:04 +0100 Subject: BlockSeq: farewell --- Source/VCExpr/Boogie2VCExpr.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/VCExpr') diff --git a/Source/VCExpr/Boogie2VCExpr.cs b/Source/VCExpr/Boogie2VCExpr.cs index 11efecdc..c6cf5221 100644 --- a/Source/VCExpr/Boogie2VCExpr.cs +++ b/Source/VCExpr/Boogie2VCExpr.cs @@ -626,9 +626,9 @@ namespace Microsoft.Boogie.VCExprAST { Push(e); return codeExpr; } - public override BlockSeq VisitBlockSeq(BlockSeq blockSeq) { + public override List VisitBlockSeq(List blockSeq) { //Contract.Requires(blockSeq != null); - Contract.Ensures(Contract.Result() != null); + Contract.Ensures(Contract.Result>() != null); Contract.Assert(false); throw new cce.UnreachableException(); } -- cgit v1.2.3