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 Permalink Normal View History

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