File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 1+ #![ crate_name = "unstabled" ]
2+ #![ feature( staged_api) ]
3+ #![ unstable( feature = "extremely_unstable" , issue = "none" ) ]
4+
5+ #[ unstable( feature = "extremely_unstable_foo" , issue = "none" ) ]
6+ pub struct Foo { }
7+
8+ #[ unstable( feature = "extremely_unstable_foo" , issue = "none" ) ]
9+ pub trait Join { }
10+
11+ #[ unstable( feature = "extremely_unstable_foo" , issue = "none" ) ]
12+ impl Join for Foo { }
Original file line number Diff line number Diff line change 1+ // aux-build:all_unstable.rs
2+
3+ // Ensure unstably exported traits have their Implementors sections.
4+
5+ #![ crate_name = "foo" ]
6+ #![ feature( extremely_unstable_foo) ]
7+
8+ extern crate unstabled;
9+
10+ // @has foo/trait.Join.html '//*[@id="impl-Join-for-Foo"]//code' 'impl Join for Foo'
11+ pub use unstabled:: Join ;
You can’t perform that action at this time.
0 commit comments