2022-03-26 16:26:02 -05:00
|
|
|
fn strip_lf(s: &str) -> &str {
|
|
|
|
s.strip_suffix(b'\n').unwrap_or(s)
|
2023-10-04 20:50:00 -05:00
|
|
|
//~^ ERROR expected a `FnMut(char)` closure, found `u8`
|
|
|
|
//~| NOTE expected an `FnMut(char)` closure, found `u8`
|
2022-03-26 16:26:02 -05:00
|
|
|
//~| HELP the trait `FnMut<(char,)>` is not implemented for `u8`
|
2022-03-26 20:49:01 -05:00
|
|
|
//~| HELP the following other types implement trait `Pattern<'a>`:
|
2022-08-15 15:31:37 -05:00
|
|
|
//~| NOTE required for `u8` to implement `Pattern<'_>`
|
2022-03-26 16:26:02 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|