]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-17718-constants-not-static.stderr
Auto merge of #78066 - bugadani:wat, r=jonas-schievink
[rust.git] / src / test / ui / issues / issue-17718-constants-not-static.stderr
1 error[E0515]: cannot return reference to temporary value
2   --> $DIR/issue-17718-constants-not-static.rs:5:30
3    |
4 LL | fn foo() -> &'static usize { &id(FOO) }
5    |                              ^-------
6    |                              ||
7    |                              |temporary value created here
8    |                              returns a reference to data owned by the current function
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0515`.