Files
rust/tests/ui/feature-gates/feature-gate-unsafe-binders.rs

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

8 lines
118 B
Rust
Raw Normal View History

2024-12-10 19:42:09 +00:00
#[cfg(any())]
fn test() {
let x: unsafe<> ();
//~^ ERROR unsafe binder types are experimental
}
fn main() {}