Sign in
rust
/
rust
/
a5a286df89146c64afebc6dcbbd3f61ba67ae53b
/
.
/
tests
/
ui
/
parser
/
use-unclosed-brace.rs
blob: aa52fe92ac1ba945caa6cf6e852e736b2358bdb8 [
file
]
use
foo
::{
bar
,
baz
;
use
std
::
fmt
::
Display
;
mod
bar
{
}
mod
baz
{
}
//~v ERROR this file contains an unclosed delimiter
fn
main
()
{}