2018-10-24 16:34:54 -05:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
2024-09-24 13:17:52 -05:00
|
|
|
#![stable(feature = "rust1", since = "1.0.0")]
|
2018-10-24 16:34:54 -05:00
|
|
|
|
2019-12-08 05:53:27 -06:00
|
|
|
#![feature(foo, foo2)]
|
2018-10-24 16:34:54 -05:00
|
|
|
#![feature(staged_api)]
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/fn.foo.html' '//pre' 'pub fn foo() -> u32'
|
|
|
|
//@ has - '//span[@class="since"]' '1.0.0 (const: unstable)'
|
2018-10-24 16:34:54 -05:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-12-21 05:16:18 -06:00
|
|
|
#[rustc_const_unstable(feature="foo", issue = "none")]
|
2021-06-19 19:39:54 -05:00
|
|
|
pub const fn foo() -> u32 { 42 }
|
2018-10-24 16:34:54 -05:00
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/fn.foo_unsafe.html' '//pre' 'pub unsafe fn foo_unsafe() -> u32'
|
|
|
|
//@ has - '//span[@class="since"]' '1.0.0 (const: unstable)'
|
2021-06-21 06:17:07 -05:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
#[rustc_const_unstable(feature="foo", issue = "none")]
|
|
|
|
pub const unsafe fn foo_unsafe() -> u32 { 42 }
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/fn.foo2.html' '//pre' 'pub const fn foo2() -> u32'
|
|
|
|
//@ !hasraw - '//span[@class="since"]'
|
2019-12-21 05:16:18 -06:00
|
|
|
#[unstable(feature = "humans", issue = "none")]
|
2018-10-24 16:34:54 -05:00
|
|
|
pub const fn foo2() -> u32 { 42 }
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/fn.foo3.html' '//pre' 'pub const fn foo3() -> u32'
|
|
|
|
//@ !hasraw - '//span[@class="since"]'
|
2024-05-26 01:05:27 -05:00
|
|
|
#[unstable(feature = "humans", issue = "none")]
|
|
|
|
#[rustc_const_unstable(feature = "humans", issue = "none")]
|
|
|
|
pub const fn foo3() -> u32 { 42 }
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/fn.bar2.html' '//pre' 'pub const fn bar2() -> u32'
|
|
|
|
//@ has - //span '1.0.0 (const: 1.0.0)'
|
2018-10-24 16:34:54 -05:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-12-08 05:53:27 -06:00
|
|
|
#[rustc_const_stable(feature = "rust1", since = "1.0.0")]
|
2018-10-24 16:34:54 -05:00
|
|
|
pub const fn bar2() -> u32 { 42 }
|
|
|
|
|
2021-06-21 06:17:07 -05:00
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/fn.foo2_gated.html' '//pre' 'pub const unsafe fn foo2_gated() -> u32'
|
|
|
|
//@ !hasraw - '//span[@class="since"]'
|
2019-12-21 05:16:18 -06:00
|
|
|
#[unstable(feature = "foo2", issue = "none")]
|
2021-06-21 07:42:57 -05:00
|
|
|
pub const unsafe fn foo2_gated() -> u32 { 42 }
|
2018-10-24 16:34:54 -05:00
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/fn.bar2_gated.html' '//pre' 'pub const unsafe fn bar2_gated() -> u32'
|
|
|
|
//@ has - '//span[@class="since"]' '1.0.0 (const: 1.0.0)'
|
2018-10-24 16:34:54 -05:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-12-08 05:53:27 -06:00
|
|
|
#[rustc_const_stable(feature = "rust1", since = "1.0.0")]
|
2021-06-21 07:42:57 -05:00
|
|
|
pub const unsafe fn bar2_gated() -> u32 { 42 }
|
2018-10-24 16:34:54 -05:00
|
|
|
|
2024-09-24 13:17:52 -05:00
|
|
|
#[unstable(
|
|
|
|
feature = "humans",
|
|
|
|
reason = "who ever let humans program computers, we're apparently really bad at it",
|
|
|
|
issue = "none",
|
|
|
|
)]
|
|
|
|
pub mod unstable {
|
|
|
|
//@ has 'foo/unstable/fn.bar_not_gated.html' '//pre' 'pub const unsafe fn bar_not_gated() -> u32'
|
|
|
|
//@ !hasraw - '//span[@class="since"]'
|
|
|
|
pub const unsafe fn bar_not_gated() -> u32 { 42 }
|
|
|
|
}
|
2021-06-21 06:17:07 -05:00
|
|
|
|
2024-09-24 13:17:52 -05:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2020-08-04 04:57:28 -05:00
|
|
|
pub struct Foo;
|
|
|
|
|
|
|
|
impl Foo {
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/struct.Foo.html' '//*[@id="method.gated"]/h4[@class="code-header"]' 'pub fn gated() -> u32'
|
|
|
|
//@ has - '//span[@class="since"]' '1.0.0 (const: unstable)'
|
2020-08-04 04:57:28 -05:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
#[rustc_const_unstable(feature="foo", issue = "none")]
|
2021-06-19 19:39:54 -05:00
|
|
|
pub const fn gated() -> u32 { 42 }
|
2020-11-29 20:00:14 -06:00
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/struct.Foo.html' '//*[@id="method.gated_unsafe"]/h4[@class="code-header"]' 'pub unsafe fn gated_unsafe() -> u32'
|
|
|
|
//@ has - '//span[@class="since"]' '1.0.0 (const: unstable)'
|
2021-06-21 06:17:07 -05:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
#[rustc_const_unstable(feature="foo", issue = "none")]
|
|
|
|
pub const unsafe fn gated_unsafe() -> u32 { 42 }
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/struct.Foo.html' '//*[@id="method.stable_impl"]/h4[@class="code-header"]' 'pub const fn stable_impl() -> u32'
|
|
|
|
//@ has - '//span[@class="since"]' '1.0.0 (const: 1.2.0)'
|
2020-11-29 20:00:14 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2022-03-26 21:43:11 -05:00
|
|
|
#[rustc_const_stable(feature = "const2", since = "1.2.0")]
|
2020-11-29 20:00:14 -06:00
|
|
|
pub const fn stable_impl() -> u32 { 42 }
|
2020-08-04 04:57:28 -05:00
|
|
|
}
|
2021-12-08 23:21:36 -06:00
|
|
|
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
pub struct Bar;
|
|
|
|
|
|
|
|
impl Bar {
|
2023-11-29 05:10:16 -06:00
|
|
|
// Show non-const stabilities that are the same as the enclosing item.
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/struct.Bar.html' '//span[@class="since"]' '1.0.0 (const: 1.2.0)'
|
2021-12-08 23:21:36 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2022-03-26 21:43:11 -05:00
|
|
|
#[rustc_const_stable(feature = "const2", since = "1.2.0")]
|
2021-12-08 23:21:36 -06:00
|
|
|
pub const fn stable_impl() -> u32 { 42 }
|
|
|
|
}
|