a.rs:
b.rs:
Expected output of rustc --pretty normal a.rs:
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.
a.rs:b.rs:Expected output of
rustc --pretty normal a.rs:Actual output of
rustc --pretty normal a.rs: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.