mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-30 22:28:26 +00:00
Contract variables can be declared in the `requires` clause and can be referenced both in `requires` and `ensures`, subject to usual borrow checking rules. This allows any setup common to both the `requires` and `ensures` clauses to only be done once.
19 lines
439 B
Rust
19 lines
439 B
Rust
//@ dont-require-annotations: NOTE
|
|
//@ compile-flags: -Zcontract-checks=yes
|
|
#![feature(contracts)]
|
|
//~^ WARN the feature `contracts` is incomplete and may not be safe to use and/or cause compiler crashes [incomplete_features]
|
|
|
|
extern crate core;
|
|
use core::contracts::requires;
|
|
|
|
#[requires(let y = 1;)]
|
|
//~^ ERROR mismatched types [E0308]
|
|
//~| NOTE expected `bool`, found `()`
|
|
fn foo(x: u32) -> u32 {
|
|
x * 2
|
|
}
|
|
|
|
fn main() {
|
|
foo(1);
|
|
}
|