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

11 lines
144 B
Rust
Raw Normal View History

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