mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 14:40:37 +00:00
10 lines
102 B
Rust
10 lines
102 B
Rust
extern crate issue_13872_2 as bar;
|
|
|
|
use bar::B;
|
|
|
|
pub fn foo() {
|
|
match B {
|
|
B => {}
|
|
}
|
|
}
|