]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-eval/dont_promote_unstable_const_fn.rs
Omit 'missing IndexMut impl' suggestion when IndexMut is implemented.
[rust.git] / src / test / ui / consts / const-eval / dont_promote_unstable_const_fn.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![unstable(feature = "humans",
12             reason = "who ever let humans program computers,
13             we're apparently really bad at it",
14             issue = "0")]
15
16 #![feature(rustc_const_unstable, const_fn)]
17 #![feature(staged_api)]
18
19 #[stable(feature = "rust1", since = "1.0.0")]
20 #[rustc_const_unstable(feature="foo")]
21 const fn foo() -> u32 { 42 }
22
23 fn meh() -> u32 { 42 }
24
25 const fn bar() -> u32 { foo() } //~ ERROR `foo` is not yet stable as a const fn
26
27 fn a() {
28     let _: &'static u32 = &foo(); //~ ERROR does not live long enough
29 }
30
31 fn main() {
32     let _: &'static u32 = &meh(); //~ ERROR does not live long enough
33     let x: &'static _ = &std::time::Duration::from_millis(42).subsec_millis();
34 }