about summary refs log tree commit diff
path: root/tests/ui/unsafe/issue-3080.rs
blob: 883f3bfd24e8345c1b7ca92987080a847f262ae0 (plain)
1
2
3
4
5
6
7
8
struct X(());
impl X {
    pub unsafe fn with(&self) { }
}

fn main() {
    X(()).with(); //~ ERROR requires unsafe function or block
}