]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/auxiliary/realcore.rs
Auto merge of #101138 - Rejyr:diagnostic-migration-rustc-lint-pt2, r=davidtwco
[rust.git] / tests / rustdoc / auxiliary / realcore.rs
1 #![crate_name = "realcore"]
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 {}
13
14 #[stable(feature = "faked_deref", since = "1.47.0")]
15 pub trait Deref {}