mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
318 B
Rust
16 lines
318 B
Rust
#![feature(const_trait_impl)]
|
|
#![feature(const_mut_refs)]
|
|
|
|
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
|
|
}
|