2018-10-24 21:34:54 +00:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
#![unstable(feature = "humans",
|
|
|
|
reason = "who ever let humans program computers, we're apparently really bad at it",
|
2019-12-21 11:16:18 +00:00
|
|
|
issue = "none")]
|
2018-10-24 21:34:54 +00:00
|
|
|
|
2019-12-08 11:53:27 +00:00
|
|
|
#![feature(foo, foo2)]
|
2018-10-24 21:34:54 +00:00
|
|
|
#![feature(staged_api)]
|
|
|
|
|
2018-12-18 21:24:20 +00:00
|
|
|
// @has 'foo/fn.foo.html' '//pre' 'pub unsafe fn foo() -> u32'
|
2018-10-24 21:34:54 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-12-21 11:16:18 +00:00
|
|
|
#[rustc_const_unstable(feature="foo", issue = "none")]
|
2018-10-24 21:34:54 +00:00
|
|
|
pub const unsafe fn foo() -> u32 { 42 }
|
|
|
|
|
2018-12-18 21:24:20 +00:00
|
|
|
// @has 'foo/fn.foo2.html' '//pre' 'pub fn foo2() -> u32'
|
2019-12-21 11:16:18 +00:00
|
|
|
#[unstable(feature = "humans", issue = "none")]
|
2018-10-24 21:34:54 +00:00
|
|
|
pub const fn foo2() -> u32 { 42 }
|
|
|
|
|
|
|
|
// @has 'foo/fn.bar2.html' '//pre' 'pub const fn bar2() -> u32'
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-12-08 11:53:27 +00:00
|
|
|
#[rustc_const_stable(feature = "rust1", since = "1.0.0")]
|
2018-10-24 21:34:54 +00:00
|
|
|
pub const fn bar2() -> u32 { 42 }
|
|
|
|
|
2018-12-18 21:24:20 +00:00
|
|
|
// @has 'foo/fn.foo2_gated.html' '//pre' 'pub unsafe fn foo2_gated() -> u32'
|
2019-12-21 11:16:18 +00:00
|
|
|
#[unstable(feature = "foo2", issue = "none")]
|
2018-10-24 21:34:54 +00:00
|
|
|
pub const unsafe fn foo2_gated() -> u32 { 42 }
|
|
|
|
|
|
|
|
// @has 'foo/fn.bar2_gated.html' '//pre' 'pub const unsafe fn bar2_gated() -> u32'
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-12-08 11:53:27 +00:00
|
|
|
#[rustc_const_stable(feature = "rust1", since = "1.0.0")]
|
2018-10-24 21:34:54 +00:00
|
|
|
pub const unsafe fn bar2_gated() -> u32 { 42 }
|
|
|
|
|
2018-12-18 21:24:20 +00:00
|
|
|
// @has 'foo/fn.bar_not_gated.html' '//pre' 'pub unsafe fn bar_not_gated() -> u32'
|
2018-10-24 21:34:54 +00:00
|
|
|
pub const unsafe fn bar_not_gated() -> u32 { 42 }
|