summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/issue-19452.rs
blob: 1d3aa49eac67fc93a64a74488794b8f51d277983 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// aux-build:issue-19452-aux.rs

extern crate issue_19452_aux;

enum Homura {
    Madoka { age: u32 }
}

fn main() {
    let homura = Homura::Madoka;
    //~^ ERROR expected value, found struct variant `Homura::Madoka`

    let homura = issue_19452_aux::Homura::Madoka;
    //~^ ERROR expected value, found struct variant `issue_19452_aux::Homura::Madoka`
}