-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Closed
Labels
A-prettyArea: Pretty printing (including `-Z unpretty`)Area: Pretty printing (including `-Z unpretty`)C-bugCategory: This is a bug.Category: This is a bug.
Description
a.rs
:
// a.rs
mod b;
b.rs
:
// b.rs
fn b() { }
Expected output of rustc --pretty normal a.rs
:
// a.rs
mod b;
Actual output of rustc --pretty normal a.rs
:
// a.rs
mod b {
fn b() { }
}
Note the two problems here: (a) the module is inlined, and (b) the comment in the module is lost. But by fixing the first, the second becomes irrelevant.
Metadata
Metadata
Assignees
Labels
A-prettyArea: Pretty printing (including `-Z unpretty`)Area: Pretty printing (including `-Z unpretty`)C-bugCategory: This is a bug.Category: This is a bug.