rust/tests/ui/consts/promoted_const_call.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
643 B
Rust
Raw Permalink Normal View History

#![feature(const_trait_impl, const_destruct)]
2023-04-16 11:12:37 +00:00
2022-11-30 12:29:01 +00:00
struct Panic;
impl const Drop for Panic { fn drop(&mut self) { panic!(); } }
2023-04-16 11:12:37 +00:00
2022-11-30 12:29:01 +00:00
pub const fn id<T>(x: T) -> T { x }
pub const C: () = {
let _: &'static _ = &id(&Panic);
//~^ ERROR: temporary value dropped while borrowed
//~| ERROR: temporary value dropped while borrowed
2022-11-30 12:29:01 +00:00
};
fn main() {
let _: &'static _ = &id(&Panic);
//~^ ERROR: temporary value dropped while borrowed
//~| ERROR: temporary value dropped while borrowed
2022-12-01 13:41:59 +00:00
let _: &'static _ = &&(Panic, 0).1;
//~^ ERROR: temporary value dropped while borrowed
//~| ERROR: temporary value dropped while borrowed
}