summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-ui/lints/unused-braces-lint.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rustdoc-ui/lints/unused-braces-lint.rs')
-rw-r--r--tests/rustdoc-ui/lints/unused-braces-lint.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/rustdoc-ui/lints/unused-braces-lint.rs b/tests/rustdoc-ui/lints/unused-braces-lint.rs
new file mode 100644
index 000000000..be0e31e4b
--- /dev/null
+++ b/tests/rustdoc-ui/lints/unused-braces-lint.rs
@@ -0,0 +1,14 @@
+// check-pass
+
+// This tests the bug in #70814, where the unused_braces lint triggered on the following code
+// without providing a span.
+
+#![deny(unused_braces)]
+
+fn main() {
+ {
+ {
+ use std;
+ }
+ }
+}