mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
8 lines
89 B
Rust
8 lines
89 B
Rust
//@ check-pass
|
|
|
|
#![feature(unsafe_binders)]
|
|
|
|
fn main() {
|
|
let x: unsafe<'a> &'a ();
|
|
}
|