]> git.lizzy.rs Git - rust.git/blob - src/librustc_error_codes/error_codes/E0262.md
Auto merge of #66396 - smmalis37:pythontest, r=alexcrichton
[rust.git] / src / librustc_error_codes / error_codes / E0262.md
1 Declaring certain lifetime names in parameters is disallowed. For example,
2 because the `'static` lifetime is a special built-in lifetime name denoting
3 the lifetime of the entire program, this is an error:
4
5 ```compile_fail,E0262
6 // error, invalid lifetime parameter name `'static`
7 fn foo<'static>(x: &'static str) { }
8 ```