about summary refs log tree commit diff
path: root/tests/ui/consts/promoted-const-drop.rs
blob: 1d1897e15d443edba8a4020071b0016322a4fcbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![feature(const_trait_impl, const_destruct)]

struct A();

impl const Drop for A {
    fn drop(&mut self) {}
}

const C: A = A();

fn main() {
    let _: &'static A = &A(); //~ ERROR temporary value dropped while borrowed
    let _: &'static [A] = &[C]; //~ ERROR temporary value dropped while borrowed
}