about summary refs log tree commit diff
path: root/tests/codegen-units/item-collection/unreferenced-const-fn.rs
blob: 294de9c3a31bda450710d4cc081c0d7dad36710a (plain)
1
2
3
4
5
6
7
8
#![deny(dead_code)]
#![crate_type = "rlib"]

//~ MONO_ITEM fn foo @@ unreferenced_const_fn-cgu.0[External]
#[inline(never)]
pub const fn foo(x: u32) -> u32 {
    x + 0xf00
}