rust/tests/ui/error-emitter/multiline-multipart-suggestion.rs
klensy 21e97a67ab tests: remove few ignore-stage2
beta was branched long ago, so can be removed
2024-04-25 10:48:11 +03:00

20 lines
352 B
Rust

//@ compile-flags: --error-format=human --color=always
//@ error-pattern: missing lifetime specifier
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() {}