blob: 9c9ab766130cf448bcdb05a21d01fd7799dc7292 [file] [log] [blame]
struct S {
x: [usize; 3],
}
fn foo() {
{
{
println!("hi");
}
}
}
fn main() {
//~^ NOTE un-closed delimiter
{
{
//~^ NOTE this delimiter might not be properly closed...
foo();
}
//~^ NOTE ...as it matches this but it has different indentation
}
//~ ERROR this file contains an un-closed delimiter