rust/tests/rustdoc-ui/lints/unused-braces-lint.rs
2023-04-29 11:36:19 -05:00

15 lines
231 B
Rust

// 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;
}
}
}