blob: 213664a90b93849265da1cc39aa12ff9dbe524c6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// https://github.com/rust-lang/rust/issues/46727
#![crate_name="foo"]
//@ aux-build:issue-46727.rs
extern crate issue_46727;
// @has foo/trait.Foo.html
// @has - '//h3[@class="code-header"]' 'impl<T> Foo for Bar<[T; 3]>'
pub use issue_46727::{Foo, Bar};
|