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

method Try (a:int) 
{
	forall
    ensures a == a;
	{
	}
}