about summary refs log tree commit diff
path: root/src/test/ui/parser/unsafe-foreign-mod.rs
blob: 872af95bd225b4aca415642bed4c94c6bd2a23c5 (plain)
1
2
3
4
5
6
7
8
9
unsafe extern {
    //~^ ERROR extern block cannot be declared unsafe
}

unsafe extern "C" {
    //~^ ERROR extern block cannot be declared unsafe
}

fn main() {}