summaryrefslogtreecommitdiff
path: root/tests/ui/consts/unstable-const-stable.rs
blob: f69e8d0efe59337c9933af81d22dedd51aad793e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//@ aux-build:unstable_but_const_stable.rs

extern crate unstable_but_const_stable;
use unstable_but_const_stable::*;

fn main() {
    some_unstable_fn(); //~ERROR use of unstable library feature
    unsafe { write_bytes(4 as *mut u8, 0, 0) }; //~ERROR use of unstable library feature
}

const fn const_main() {
    some_unstable_fn(); //~ERROR use of unstable library feature
    unsafe { write_bytes(4 as *mut u8, 0, 0) }; //~ERROR use of unstable library feature
}