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; }