]> git.proxmox.com Git - rustc.git/blob - src/test/ui/stability-attribute/missing-const-stability.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / stability-attribute / missing-const-stability.rs
1 #![feature(staged_api)]
2 #![feature(const_trait_impl)]
3 #![stable(feature = "stable", since = "1.0.0")]
4
5 #[stable(feature = "stable", since = "1.0.0")]
6 pub const fn foo() {} //~ ERROR function has missing const stability attribute
7
8 #[unstable(feature = "unstable", issue = "none")]
9 pub const fn bar() {} // ok because function is unstable
10
11 #[stable(feature = "stable", since = "1.0.0")]
12 pub struct Foo;
13 impl Foo {
14 #[stable(feature = "stable", since = "1.0.0")]
15 pub const fn foo() {} //~ ERROR associated function has missing const stability attribute
16
17 #[unstable(feature = "unstable", issue = "none")]
18 pub const fn bar() {} // ok because function is unstable
19 }
20
21 #[stable(feature = "stable", since = "1.0.0")]
22 pub trait Bar {
23 #[stable(feature = "stable", since = "1.0.0")]
24 fn fun();
25 }
26 #[stable(feature = "stable", since = "1.0.0")]
27 impl const Bar for Foo {
28 //~^ ERROR implementation has missing const stability attribute
29 fn fun() {}
30 }
31
32 fn main() {}