summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/issue-89469.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/lint/issue-89469.rs')
-rw-r--r--src/test/ui/lint/issue-89469.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/ui/lint/issue-89469.rs b/src/test/ui/lint/issue-89469.rs
new file mode 100644
index 000000000..3a6ab4528
--- /dev/null
+++ b/src/test/ui/lint/issue-89469.rs
@@ -0,0 +1,20 @@
+// Regression test for #89469, where an extra non_snake_case warning was
+// reported for a shorthand field binding.
+
+// check-pass
+#![deny(non_snake_case)]
+
+#[allow(non_snake_case)]
+struct Entry {
+ A: u16,
+ a: u16
+}
+
+fn foo() -> Entry {todo!()}
+
+pub fn f() {
+ let Entry { A, a } = foo();
+ let _ = (A, a);
+}
+
+fn main() {}