summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/auxiliary/cross_crate_generic_typedef.rs
blob: f4e020b3b95999999cd71292571404f2c2095219 (plain)
1
2
3
4
5
pub struct InlineOne<A> {
   pub inline: A
}

pub type InlineU64 = InlineOne<u64>;