2019-05-06 19:41:05 +00:00
|
|
|
// normalize-stderr-test "\(\d+ byte\)" -> "(N byte)"
|
|
|
|
// normalize-stderr-test "\(limit: \d+ byte\)" -> "(limit: N byte)"
|
|
|
|
|
2018-08-01 20:38:04 +00:00
|
|
|
#![allow(clippy::many_single_char_names)]
|
2018-05-27 14:04:45 +00:00
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
struct Foo(u8);
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
struct Bar(u32);
|
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
fn good(a: &mut u32, b: u32, c: &Bar, d: &u32) {}
|
2018-05-27 14:04:45 +00:00
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
fn bad(x: &u16, y: &Foo) {}
|
2018-05-27 14:04:45 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let (mut a, b, c, d, x, y) = (0, 0, Bar(0), 0, 0, Foo(0));
|
|
|
|
good(&mut a, b, &c, &d);
|
|
|
|
bad(&x, &y);
|
|
|
|
}
|