mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
20 lines
387 B
Rust
20 lines
387 B
Rust
// This tests verifies that unary structs and enum variants
|
|
// are treated as rvalues and their lifetime is not bounded to
|
|
// the static scope.
|
|
|
|
struct Test;
|
|
|
|
impl Drop for Test {
|
|
fn drop (&mut self) {}
|
|
}
|
|
|
|
fn createTest<'a>() -> &'a Test {
|
|
let testValue = &Test;
|
|
return testValue; //~ ERROR cannot return value referencing temporary value
|
|
}
|
|
|
|
|
|
pub fn main() {
|
|
createTest();
|
|
}
|