summaryrefslogtreecommitdiff
path: root/Test/dafny4/Bug136.dfy
blob: 5f3cde690d9729ccb3e0b68dbd276fde2a2b64af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %dafny /compile:0 /print:- "%s" > "%t"
// RUN: %diff "%s.expect" "%t"

method test()
{
    assume false;
    assert true;
}