blob: e0a906df002dae87ba8dd1240416c65e31ea296f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#![crate_name = "realcore"]
#![feature(staged_api)]
#![unstable(feature = "extremely_unstable", issue = "none")]
#[unstable(feature = "extremely_unstable_foo", issue = "none")]
pub struct Foo {}
#[unstable(feature = "extremely_unstable_foo", issue = "none")]
pub trait Join {}
#[unstable(feature = "extremely_unstable_foo", issue = "none")]
impl Join for Foo {}
#[stable(feature = "faked_deref", since = "1.47.0")]
pub trait Deref {}
|