summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-19100.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/issues/issue-19100.stderr')
-rw-r--r--src/test/ui/issues/issue-19100.stderr17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/ui/issues/issue-19100.stderr b/src/test/ui/issues/issue-19100.stderr
new file mode 100644
index 000000000..293430691
--- /dev/null
+++ b/src/test/ui/issues/issue-19100.stderr
@@ -0,0 +1,17 @@
+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`.