rust/tests/ui/inline-const/expr-unsafe-err.rs

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

11 lines
138 B
Rust
Raw Normal View History

const unsafe fn require_unsafe() -> usize {
1
}
2022-12-01 13:13:18 -06:00
fn main() {
const {
require_unsafe();
//~^ ERROR [E0133]
}
}