rust/tests/rustdoc/auxiliary/issue-46727.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
119 B
Rust
Raw Normal View History

2017-12-23 04:16:03 -06:00
// compile-flags: -Cmetadata=aux
pub trait Foo {}
pub struct Bar<T> { x: T }
impl<T> Foo for Bar<[T; 1 + 1 + 1]> {}