summaryrefslogtreecommitdiff
path: root/Source/VCExpr/Boogie2VCExpr.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Source/VCExpr/Boogie2VCExpr.cs')
-rw-r--r--Source/VCExpr/Boogie2VCExpr.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/VCExpr/Boogie2VCExpr.cs b/Source/VCExpr/Boogie2VCExpr.cs
index cac6d95b..37bcda96 100644
--- a/Source/VCExpr/Boogie2VCExpr.cs
+++ b/Source/VCExpr/Boogie2VCExpr.cs
@@ -704,9 +704,9 @@ namespace Microsoft.Boogie.VCExprAST {
Contract.Assert(false);
throw new cce.UnreachableException();
}
- public override RequiresSeq VisitRequiresSeq(RequiresSeq requiresSeq) {
+ public override List<Requires> VisitRequiresSeq(List<Requires> requiresSeq) {
//Contract.Requires(requiresSeq != null);
- Contract.Ensures(Contract.Result<RequiresSeq>() != null);
+ Contract.Ensures(Contract.Result<List<Requires>>() != null);
Contract.Assert(false);
throw new cce.UnreachableException();
}
@@ -716,9 +716,9 @@ namespace Microsoft.Boogie.VCExprAST {
Contract.Assert(false);
throw new cce.UnreachableException();
}
- public override EnsuresSeq VisitEnsuresSeq(EnsuresSeq ensuresSeq) {
+ public override List<Ensures> VisitEnsuresSeq(List<Ensures> ensuresSeq) {
//Contract.Requires(ensuresSeq != null);
- Contract.Ensures(Contract.Result<EnsuresSeq>() != null);
+ Contract.Ensures(Contract.Result<List<Ensures>>() != null);
Contract.Assert(false);
throw new cce.UnreachableException();
}