Advertisement
cwchen

[Rust] static lifetime in a constant

Aug 27th, 2017
1,483
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rust 0.07 KB | None | 0 0
  1. static FOO: i32 = 5;
  2.  
  3. fn main() {
  4.    let x: &'static i32 = &FOO;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement