aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/export-tag-variant.rs
blob: 309261a50d5ebb887d3da3862350da8ce571d02e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Export the tag variants, without the tag

mod foo {
  export t1;
  tag t {
    t1;
  }
}

fn main() {
  auto v = foo::t1;
}