mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-09 06:46:44 +00:00
11 lines
143 B
Rust
11 lines
143 B
Rust
// error-pattern: this file contains an unclosed delimiter
|
|
use foo::{bar, baz;
|
|
|
|
use std::fmt::Display;
|
|
|
|
mod bar { }
|
|
|
|
mod baz { }
|
|
|
|
fn main() {}
|