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

8 lines
120 B
Rust
Raw Normal View History

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