mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
13 lines
231 B
Rust
13 lines
231 B
Rust
// 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
|
|
}
|