mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 15:39:20 +00:00
9 lines
142 B
Rust
9 lines
142 B
Rust
//@ check-pass
|
|
|
|
#![feature(unsafe_binders)]
|
|
//~^ WARN the feature `unsafe_binders` is incomplete
|
|
|
|
fn main() {
|
|
let x: unsafe<'a> &'a ();
|
|
}
|