]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/consts/auxiliary/const_fn_lib.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / consts / auxiliary / const_fn_lib.rs
index 499227e71a74cc42bf5314b1de9a1ddd2a85b241..bf0b01a2ecfe0d89ed0005dc4af6ccb963a7df1a 100644 (file)
@@ -1,16 +1,23 @@
-// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
 // Crate that exports a const fn. Used for testing cross-crate.
 
+#![feature(const_fn_fn_ptr_basics)]
 #![crate_type="rlib"]
-#![feature(min_const_fn)]
 
-pub const fn foo() -> usize { 22 } //~ ERROR const fn is unstable
+pub const fn foo() -> usize { 22 }
+
+pub const fn bar() -> fn() {
+    fn x() {}
+    x
+}
+
+#[inline]
+pub const fn bar_inlined() -> fn() {
+    fn x() {}
+    x
+}
+
+#[inline(always)]
+pub const fn bar_inlined_always() -> fn() {
+    fn x() {}
+    x
+}