]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cross-crate/cross-crate-const-pat.rs
Move some tests with compare-mode=nll output to revisions
[rust.git] / src / test / ui / cross-crate / cross-crate-const-pat.rs
1 // run-pass
2 // aux-build:cci_const.rs
3
4 // pretty-expanded FIXME #23616
5
6 extern crate cci_const;
7
8 pub fn main() {
9     let x = cci_const::uint_val;
10     match x {
11         cci_const::uint_val => {}
12         _ => {}
13     }
14 }