Sign in
android
/
toolchain
/
rustc
/
5c0824a599f2f1f4dcb9c92edf09f6c1b555988d
/
.
/
tests
/
ui
/
parser
/
use-unclosed-brace.rs
blob: fcfe95b26f96b6794b4de62ac5c26a66fc9363eb [
file
] [
log
] [
blame
]
// error-pattern: this file contains an unclosed delimiter
use
foo
::{
bar
,
baz
;
use
std
::
fmt
::
Display
;
mod
bar
{
}
mod
baz
{
}
fn
main
()
{}