about summary refs log tree commit diff
path: root/tests/rustdoc/inline_cross/auxiliary/issue-46727.rs
blob: acfc418f9f1d6aa7f58b1a38581a0927bbd7ceeb (plain)
1
2
3
4
5
6
7
//@ compile-flags: -Cmetadata=aux

pub trait Foo {}

pub struct Bar<T> { x: T }

impl<T> Foo for Bar<[T; 1 + 1 + 1]> {}