about summary refs log tree commit diff
path: root/tests/ui/inline-const/instance-doesnt-depend-on-type.rs
blob: c53aab60b06faaa55adf2e7c2f26195e2d878366 (plain)
1
2
3
4
5
6
7
8
//@ check-pass
// issue: 114660

fn main() {
    const { core::mem::transmute::<u8, u8> };
    // Don't resolve the instance of this inline constant to be an intrinsic,
    // even if the type of the constant is `extern "rust-intrinsic" fn(u8) -> u8`.
}