mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
21 lines
343 B
Rust
21 lines
343 B
Rust
//@ compile-flags: --error-format=human --color=always
|
|
|
|
fn short(foo_bar: &Vec<&i32>) -> &i32 {
|
|
&12
|
|
}
|
|
|
|
fn long(
|
|
foo_bar: &Vec<&i32>,
|
|
something_very_long_so_that_the_line_will_wrap_around__________: i32,
|
|
) -> &i32 {
|
|
&12
|
|
}
|
|
|
|
fn long2(
|
|
foo_bar: &Vec<&i32>) -> &i32 {
|
|
&12
|
|
}
|
|
fn main() {}
|
|
|
|
//~? RAW missing lifetime specifier
|