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.

23 lines
685 B
Rust
Raw Permalink Normal View History

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