mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 13:57:24 +00:00
12 lines
192 B
Rust
12 lines
192 B
Rust
// aux-build:discr-foreign-dep.rs
|
|
// build-pass
|
|
|
|
extern crate discr_foreign_dep;
|
|
|
|
fn main() {
|
|
match Default::default() {
|
|
discr_foreign_dep::Foo::A(_) => {}
|
|
_ => {}
|
|
}
|
|
}
|