// Test that #[allow(...)] attributes silence Rs lints.
#[allow(rs_no_vec)]fnuses_vec()->Vec<i32>{vec![1,2,3]}#[allow(rs_no_string)]fnuses_string()-> String{"hello".to_string()}#[allow(rs_no_dyn)]fnuses_dyn(x:&dyn std::fmt::Debug){let_= x;}#[allow(rs_no_panic_unwind)]fnmain(){let v =uses_vec();let s =uses_string();uses_dyn(&42);println!("{:?}{}", v, s);}