Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
ui
/
consts
/
const-fn-stability-calls-3.rs
blob: b831dee580c1a566dc6ccd7db5880d8eab97b610 [
file
] [
log
] [
blame
]
// Test use of const fn from another crate without a feature gate.
// check-pass
// aux-build:const_fn_lib.rs
extern
crate const_fn_lib
;
use
const_fn_lib
::
foo
;
fn
main
()
{
let
x
=
foo
();
// use outside a constant is ok
}