2024-01-03 14:56:10 -07:00
|
|
|
// https://github.com/rust-lang/rust/issues/46727
|
|
|
|
#![crate_name="foo"]
|
|
|
|
|
2017-12-23 11:16:03 +01:00
|
|
|
//@ aux-build:issue-46727.rs
|
|
|
|
|
|
|
|
extern crate issue_46727;
|
|
|
|
|
2024-06-21 14:03:08 +02:00
|
|
|
//@ has foo/trait.Foo.html
|
|
|
|
//@ has - '//h3[@class="code-header"]' 'impl<T> Foo for Bar<[T; 3]>'
|
2017-12-23 11:16:03 +01:00
|
|
|
pub use issue_46727::{Foo, Bar};
|