]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/const-display.rs
Rollup merge of #61438 - estebank:generics-span, r=varkor
[rust.git] / src / test / rustdoc / const-display.rs
1 #![crate_name = "foo"]
2
3 #![unstable(feature = "humans",
4             reason = "who ever let humans program computers, we're apparently really bad at it",
5             issue = "0")]
6
7 #![feature(rustc_const_unstable, const_fn, foo, foo2)]
8 #![feature(staged_api)]
9
10 // @has 'foo/fn.foo.html' '//pre' 'pub unsafe fn foo() -> u32'
11 #[stable(feature = "rust1", since = "1.0.0")]
12 #[rustc_const_unstable(feature="foo")]
13 pub const unsafe fn foo() -> u32 { 42 }
14
15 // @has 'foo/fn.foo2.html' '//pre' 'pub fn foo2() -> u32'
16 #[unstable(feature = "humans", issue="0")]
17 pub const fn foo2() -> u32 { 42 }
18
19 // @has 'foo/fn.bar2.html' '//pre' 'pub const fn bar2() -> u32'
20 #[stable(feature = "rust1", since = "1.0.0")]
21 pub const fn bar2() -> u32 { 42 }
22
23 // @has 'foo/fn.foo2_gated.html' '//pre' 'pub unsafe fn foo2_gated() -> u32'
24 #[unstable(feature = "foo2", issue="0")]
25 pub const unsafe fn foo2_gated() -> u32 { 42 }
26
27 // @has 'foo/fn.bar2_gated.html' '//pre' 'pub const unsafe fn bar2_gated() -> u32'
28 #[stable(feature = "rust1", since = "1.0.0")]
29 pub const unsafe fn bar2_gated() -> u32 { 42 }
30
31 // @has 'foo/fn.bar_not_gated.html' '//pre' 'pub unsafe fn bar_not_gated() -> u32'
32 pub const unsafe fn bar_not_gated() -> u32 { 42 }