about summary refs log tree commit diff
path: root/tests/ui/resolve/issue-19452.rs
blob: da83222b11a6c186070594b574717b1f39460de4 (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`
}