From 8afb07fb60f9521212066fbbff233c034ee8af40 Mon Sep 17 00:00:00 2001 From: Clément Pit--Claudel Date: Wed, 19 Aug 2015 22:17:18 -0700 Subject: Add a test to check that there are as many errors as failed preconditions --- Test/dafny0/one-message-per-failed-precondition.dfy | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Test/dafny0/one-message-per-failed-precondition.dfy (limited to 'Test/dafny0/one-message-per-failed-precondition.dfy') diff --git a/Test/dafny0/one-message-per-failed-precondition.dfy b/Test/dafny0/one-message-per-failed-precondition.dfy new file mode 100644 index 00000000..ef4f5bd6 --- /dev/null +++ b/Test/dafny0/one-message-per-failed-precondition.dfy @@ -0,0 +1,20 @@ +// RUN: %dafny /compile:0 /print:"%t.print" /dprint:"%t.dprint" "%s" > "%t" +// RUN: %diff "%s.expect" "%t" + +// When a function call violates two preconditions at the same time, it causes +// two errors to be reported for the same token + +method A(x: int) + requires x > 0 + requires x < 0 +{} + +method B(x: int) { + A(x); +} + +function fA(x: int): int + requires x > 0 + requires x < 0 { 1 } + +function fB(x: int): int { fA(x) } -- cgit v1.2.3