about summary refs log tree commit diff
path: root/tests/ui/unsafe-binders/simple.rs
blob: 6172a9e1e7bb23bfe0338d8ac0b7ea3cfff87454 (plain)
1
2
3
4
5
6
7
8
//@ check-pass

#![feature(unsafe_binders)]
//~^ WARN the feature `unsafe_binders` is incomplete

fn main() {
    let x: unsafe<'a> &'a ();
}