summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-lifetime-of-struct-or-enum-variant.stderr
blob: b4bf2ab312d30a56fd00a05f0b09285f4374c6ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0515]: cannot return value referencing temporary value
  --> $DIR/regions-lifetime-of-struct-or-enum-variant.rs:15:3
   |
LL |   let testValue = &id(Test);
   |                    -------- temporary value created here
LL |   testValue
   |   ^^^^^^^^^ returns a value referencing data owned by the current function

error[E0515]: cannot return value referencing temporary value
  --> $DIR/regions-lifetime-of-struct-or-enum-variant.rs:21:3
   |
LL |   let testValue = &id(MyEnum::Variant1);
   |                    -------------------- temporary value created here
LL |   testValue
   |   ^^^^^^^^^ returns a value referencing data owned by the current function

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0515`.