]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/const-block-cross-crate-fn.rs
Rollup merge of #106949 - compiler-errors:is-poly, r=BoxyUwU
[rust.git] / tests / 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 }