From 27a5f7a4a7e08ac81c28342565b63ed5e24a8ecd Mon Sep 17 00:00:00 2001 From: akashlal Date: Tue, 10 Aug 2010 06:41:24 +0000 Subject: Fixed a contract --- Source/VCGeneration/Check.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/VCGeneration') diff --git a/Source/VCGeneration/Check.cs b/Source/VCGeneration/Check.cs index 29574966..03a06672 100644 --- a/Source/VCGeneration/Check.cs +++ b/Source/VCGeneration/Check.cs @@ -462,7 +462,7 @@ void ObjectInvariant() List> array = (List>) o; List> arrayVal = new List>(); foreach (List tuple in array) { - Contract.Assert(Contract.Result>() != null); + Contract.Assert(tuple != null); List tupleVal = new List(); foreach (int j in tuple) { -- cgit v1.2.3