summaryrefslogtreecommitdiff
path: root/Test/dafny4/Bug121.dfy
blob: 13798fa8185f756ad232ce5289fd928a09ff1563 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// RUN: %dafny /compile:0 /autoTriggers:1 "%s" > "%t"
// RUN: %diff "%s.expect" "%t"

method Try (a:int, b:int, c:int) 
{
	forall
    ensures a * c == a * c;
    ensures b * c == b * c;
	{
	}
}