diff options
| -rw-r--r-- | src/test/compile-fail/export-import.rs | 3 | ||||
| -rw-r--r-- | src/test/compile-fail/export-no-tag-variants.rs | 3 | ||||
| -rw-r--r-- | src/test/compile-fail/export-tag-variant.rs | 3 | ||||
| -rw-r--r-- | src/test/compile-fail/export.rs | 3 |
4 files changed, 12 insertions, 0 deletions
diff --git a/src/test/compile-fail/export-import.rs b/src/test/compile-fail/export-import.rs index cfa27af3..def6af8e 100644 --- a/src/test/compile-fail/export-import.rs +++ b/src/test/compile-fail/export-import.rs @@ -1,4 +1,7 @@ // xfail-boot +// xfail-stage0 +// xfail-stage1 +// xfail-stage2 // error-pattern: unresolved name import m.unexported; diff --git a/src/test/compile-fail/export-no-tag-variants.rs b/src/test/compile-fail/export-no-tag-variants.rs index 69799802..11100b98 100644 --- a/src/test/compile-fail/export-no-tag-variants.rs +++ b/src/test/compile-fail/export-no-tag-variants.rs @@ -1,4 +1,7 @@ // xfail-boot +// xfail-stage0 +// xfail-stage1 +// xfail-stage2 // error-pattern: unresolved name // Tag variants are not exported with their tags. This allows for a diff --git a/src/test/compile-fail/export-tag-variant.rs b/src/test/compile-fail/export-tag-variant.rs index c37dac2e..dee8a483 100644 --- a/src/test/compile-fail/export-tag-variant.rs +++ b/src/test/compile-fail/export-tag-variant.rs @@ -1,4 +1,7 @@ // xfail-boot +// xfail-stage0 +// xfail-stage1 +// xfail-stage2 // error-pattern: unresolved name mod foo { diff --git a/src/test/compile-fail/export.rs b/src/test/compile-fail/export.rs index d54e515c..337dcaec 100644 --- a/src/test/compile-fail/export.rs +++ b/src/test/compile-fail/export.rs @@ -1,4 +1,7 @@ // xfail-boot +// xfail-stage0 +// xfail-stage1 +// xfail-stage2 // error-pattern: unresolved name mod foo { export x; |