blob: 10c1d25170648fda802b7052b8e9b3aca3fe2cab [file] [log] [blame]
//! regression test for <https://github.com/rust-lang/rust/issues/11681>
// 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();
}