2015-05-29 08:57:36 -05:00
|
|
|
// Test use of const fn from another crate without a feature gate.
|
|
|
|
|
2019-06-12 10:18:32 -05:00
|
|
|
// check-pass
|
2015-05-29 08:57:36 -05:00
|
|
|
// aux-build:const_fn_lib.rs
|
|
|
|
|
|
|
|
extern crate const_fn_lib;
|
|
|
|
|
|
|
|
use const_fn_lib::foo;
|
|
|
|
|
2018-10-31 07:08:01 -05:00
|
|
|
fn main() {
|
2015-05-29 08:57:36 -05:00
|
|
|
let x = foo(); // use outside a constant is ok
|
|
|
|
}
|