summaryrefslogtreecommitdiffstats
path: root/tests/ui/use/issue-18986.rs
blob: f0b292f2911c00221de6c26f5b6dcbe8bc697a45 (plain)
1
2
3
4
5
6
7
8
9
10
// 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`
    }
}