blob: 255a28209bc2a78d930b3659431bd0f2b4934c8c [file] [log] [blame] [edit]
// This test ensures that the `doc(fake_variadic)` attribute is correctly handled
// through reexports.
//@ aux-build:reexport-fake_variadic.rs
#![crate_name = "foo"]
extern crate reexport_fake_variadic as dep;
//@ has foo/trait.Foo.html
//@ has - '//section[@id="impl-Foo-for-(T,)"]/h3' 'impl<T> Foo for (T₁, T₂, …, Tₙ)'
pub use dep::Foo;