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)]
|
|
|
|
|
2021-06-20 00:39:54 +00:00
|
|
|
// @has 'foo/fn.foo.html' '//pre' 'pub fn foo() -> u32'
|
2021-06-20 00:13:23 +00:00
|
|
|
// @has - '//span[@class="since"]' '1.0.0 (const: unstable)'
|
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")]
|
2021-06-20 00:39:54 +00:00
|
|
|
pub const fn foo() -> u32 { 42 }
|
2018-10-24 21:34:54 +00:00
|
|
|
|
2021-06-21 11:17:07 +00:00
|
|
|
// @has 'foo/fn.foo_unsafe.html' '//pre' 'pub unsafe fn foo_unsafe() -> u32'
|
|
|
|
// @has - '//span[@class="since"]' '1.0.0 (const: unstable)'
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
#[rustc_const_unstable(feature="foo", issue = "none")]
|
|
|
|
pub const unsafe fn foo_unsafe() -> u32 { 42 }
|
|
|
|
|
2020-09-12 14:52:12 +00:00
|
|
|
// @has 'foo/fn.foo2.html' '//pre' 'pub const fn foo2() -> u32'
|
2021-06-21 12:15:27 +00:00
|
|
|
// @!has - '//span[@class="since"]'
|
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'
|
2020-11-30 02:00:14 +00:00
|
|
|
// @has - //span '1.0.0 (const: 1.0.0)'
|
2018-10-24 21:34:54 +00:00
|
|
|
#[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 }
|
|
|
|
|
2021-06-21 11:17:07 +00:00
|
|
|
|
|
|
|
// @has 'foo/fn.foo2_gated.html' '//pre' 'pub const fn foo2_gated() -> u32'
|
2021-06-21 12:15:27 +00:00
|
|
|
// @!has - '//span[@class="since"]'
|
2019-12-21 11:16:18 +00:00
|
|
|
#[unstable(feature = "foo2", issue = "none")]
|
2021-06-21 11:17:07 +00:00
|
|
|
pub const fn foo2_gated() -> u32 { 42 }
|
2018-10-24 21:34:54 +00:00
|
|
|
|
2021-06-21 11:17:07 +00:00
|
|
|
// @has 'foo/fn.bar2_gated.html' '//pre' 'pub const fn bar2_gated() -> u32'
|
2020-11-30 02:00:14 +00:00
|
|
|
// @has - '//span[@class="since"]' '1.0.0 (const: 1.0.0)'
|
2018-10-24 21:34:54 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-12-08 11:53:27 +00:00
|
|
|
#[rustc_const_stable(feature = "rust1", since = "1.0.0")]
|
2021-06-21 11:17:07 +00:00
|
|
|
pub const fn bar2_gated() -> u32 { 42 }
|
2018-10-24 21:34:54 +00:00
|
|
|
|
2021-06-21 11:17:07 +00:00
|
|
|
// @has 'foo/fn.bar_not_gated.html' '//pre' 'pub const fn bar_not_gated() -> u32'
|
2021-06-21 12:15:27 +00:00
|
|
|
// @!has - '//span[@class="since"]'
|
2021-06-21 11:17:07 +00:00
|
|
|
pub const fn bar_not_gated() -> u32 { 42 }
|
|
|
|
|
2020-08-04 09:57:28 +00:00
|
|
|
pub struct Foo;
|
|
|
|
|
|
|
|
impl Foo {
|
2021-06-20 00:39:54 +00:00
|
|
|
// @has 'foo/struct.Foo.html' '//div[@id="method.gated"]/code' 'pub fn gated() -> u32'
|
2021-06-20 00:13:23 +00:00
|
|
|
// @has - '//span[@class="since"]' '1.0.0 (const: unstable)'
|
2020-08-04 09:57:28 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
#[rustc_const_unstable(feature="foo", issue = "none")]
|
2021-06-20 00:39:54 +00:00
|
|
|
pub const fn gated() -> u32 { 42 }
|
2020-11-30 02:00:14 +00:00
|
|
|
|
2021-06-21 11:17:07 +00:00
|
|
|
// @has 'foo/struct.Foo.html' '//div[@id="method.gated_unsafe"]/code' 'pub unsafe fn gated_unsafe() -> u32'
|
|
|
|
// @has - '//span[@class="since"]' '1.0.0 (const: unstable)'
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
#[rustc_const_unstable(feature="foo", issue = "none")]
|
|
|
|
pub const unsafe fn gated_unsafe() -> u32 { 42 }
|
|
|
|
|
2021-04-23 20:15:57 +00:00
|
|
|
// @has 'foo/struct.Foo.html' '//div[@id="method.stable_impl"]/code' 'pub const fn stable_impl() -> u32'
|
2020-11-30 02:00:14 +00:00
|
|
|
// @has - '//span[@class="since"]' '1.0.0 (const: 1.2.0)'
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
#[rustc_const_stable(feature = "rust1", since = "1.2.0")]
|
|
|
|
pub const fn stable_impl() -> u32 { 42 }
|
2020-08-04 09:57:28 +00:00
|
|
|
}
|