1
Fork 0
rust/tests/ui/parser/use-unclosed-brace.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
136 B
Rust
Raw Normal View History

2021-04-08 18:35:04 -07:00
use foo::{bar, baz;
use std::fmt::Display;
mod bar { }
mod baz { }
//~v ERROR this file contains an unclosed delimiter
2021-04-08 18:35:04 -07:00
fn main() {}