about summary refs log tree commit diff
path: root/tests/ui/parser/use-unclosed-brace.rs
blob: aa52fe92ac1ba945caa6cf6e852e736b2358bdb8 (plain)
1
2
3
4
5
6
7
8
9
10
use foo::{bar, baz;

use std::fmt::Display;

mod bar { }

mod baz { }

//~v ERROR this file contains an unclosed delimiter
fn main() {}