]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-block-cross-crate-fn.rs
Rollup merge of #64603 - gilescope:unused-lifetime-warning, r=matthewjasper
[rust.git] / src / test / ui / consts / const-block-cross-crate-fn.rs
1 // run-pass
2 // aux-build:cci_const_block.rs
3
4
5 extern crate cci_const_block;
6
7 pub fn main() {
8     assert_eq!(cci_const_block::BLOCK_FN_DEF(390), 400);
9 }