aboutsummaryrefslogtreecommitdiff
path: root/src/test/compile-fail/export-no-tag-variants.rs
blob: 7676191c8ea56d6a8736bf42c4fba5d2da7de561 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// xfail-boot
// error-pattern: unresolved name

// Tag variants are not exported with their tags. This allows for a
// simple sort of ADT.

mod foo {
  export t;

  tag t {
    t1;
  }
}

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