rust/tests/rustdoc-ui/unused-braces-lint.rs
2023-01-11 09:32:08 +00: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;
}
}
}