mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
11 lines
238 B
Rust
11 lines
238 B
Rust
//@ aux-build:use-from-trait-xc.rs
|
|
|
|
extern crate use_from_trait_xc;
|
|
pub use use_from_trait_xc::Trait;
|
|
|
|
fn main() {
|
|
match () {
|
|
Trait { x: 42 } => () //~ ERROR expected struct, variant or union type, found trait `Trait`
|
|
}
|
|
}
|