anodized 0.4.0

An ecosystem for correct Rust based on lightweight specification annotations
Documentation
1
2
3
4
5
6
7
8
9
10
11
error: postcondition closure must have exactly one argument, found 2
 --> tests/compile_fail/closure_validation.rs:5:14
  |
5 |     ensures: |x, y| x > 0,
  |              ^

error: postcondition closure must have exactly one argument, found 0
  --> tests/compile_fail/closure_validation.rs:13:14
   |
13 |     ensures: || true,
   |              ^