summaryrefslogtreecommitdiff
path: root/Test/dafny0/CompilationErrors.dfy
Commit message (Collapse)AuthorAge
* Language change: All functions and methods declared lexically outside any ↵Gravatar leino2014-12-12
| | | | | | | | | | class are now automatically static, and fields are no longer allowed to be declared there. Stated differently, all heap state must now be declared inside an explicitly declared class, and functions and methods declared outside any class can be viewed as belonging to the module. The motivating benefit of this change is to no longer need the 'static' keyword when declaring a module of functions and methods.
* Renamed "arbitrary type" to "opaque type"Gravatar Rustan Leino2014-07-15
|
* Set up the same test infrastructure as in Boogie.Gravatar wuestholz2014-05-29
|
* More thoroughly check for nested assume statements during compilationGravatar Rustan Leino2014-01-05
|
* Let compiler complain about body-less functions and methods, even if these ↵Gravatar Rustan Leino2013-11-14
are ghost