blob: 0bf7cabc43b2401a29df1e752b054b7d0609603d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// aux-build:unstable-trait.rs
#![crate_name = "foo"]
#![feature(private_trait)]
extern crate unstable_trait;
// @hasraw foo/struct.Foo.html 'bar'
// @hasraw foo/struct.Foo.html 'bar2'
#[doc(inline)]
pub use unstable_trait::Foo;
|