diff options
Diffstat (limited to 'tests/ui/imports/import-loop.stderr')
-rw-r--r-- | tests/ui/imports/import-loop.stderr | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/ui/imports/import-loop.stderr b/tests/ui/imports/import-loop.stderr new file mode 100644 index 000000000..b87bfb1be --- /dev/null +++ b/tests/ui/imports/import-loop.stderr @@ -0,0 +1,9 @@ +error[E0432]: unresolved import `y::x` + --> $DIR/import-loop.rs:6:13 + | +LL | pub use y::x; + | ^^^^ no `x` in `y` + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0432`. |