summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-19100.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/issues/issue-19100.stderr17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/ui/issues/issue-19100.stderr b/src/test/ui/issues/issue-19100.stderr
deleted file mode 100644
index 293430691..000000000
--- a/src/test/ui/issues/issue-19100.stderr
+++ /dev/null
@@ -1,17 +0,0 @@
-warning[E0170]: pattern binding `Bar` is named the same as one of the variants of the type `Foo`
- --> $DIR/issue-19100.rs:18:1
- |
-LL | Bar if true
- | ^^^ help: to match on the variant, qualify the path: `Foo::Bar`
- |
- = note: `#[warn(bindings_with_variant_name)]` on by default
-
-warning[E0170]: pattern binding `Baz` is named the same as one of the variants of the type `Foo`
- --> $DIR/issue-19100.rs:22:1
- |
-LL | Baz if false
- | ^^^ help: to match on the variant, qualify the path: `Foo::Baz`
-
-warning: 2 warnings emitted
-
-For more information about this error, try `rustc --explain E0170`.