blob: be0e31e4be2ff9d3c985393712f231291c13dd1b [file] [log] [blame]
// 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;
}
}
}