DEBSOURCES
Skip Quicknav
sources / rustc / 1.70.0%2Bdfsg1-9 / tests / ui / generics / generic-newtype-struct.rs
12345678
// run-pass // pretty-expanded FIXME #23616 struct S<T>(#[allow(unused_tuple_struct_fields)] T); pub fn main() { let _s = S(2); }