rust/tests/ui/span/borrowck-fn-in-const-b.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
303 B
Rust
Raw Normal View History

// Check that we check fns appearing in constant declarations.
// Issue #22382.
// How about mutating an immutable vector?
const MUTATE: fn(&Vec<String>) = {
fn broken(x: &Vec<String>) {
x.push(format!("this is broken"));
//~^ ERROR cannot borrow
}
broken
};
fn main() {
}