-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Open
Labels
A-prettyArea: Pretty printing (including `-Z unpretty`)Area: Pretty printing (including `-Z unpretty`)
Description
pub fn bar() {
println!("Hello, World!");
}
// hello...
pub fn foo() {
/*
some
comment
*/
}
// ...world!
Macro Expansion:
#![feature(prelude_import)]
#[prelude_import]
use std::prelude::v1::*;
#[macro_use]
extern crate std;
pub fn bar() {
// hello...
/*
some
comment
*/
// ...world!
{
::std::io::_print(::core::fmt::Arguments::new_v1(&["Hello, World!\n"],
&match () {
() => [],
}));
};
}
pub fn foo() { }
Metadata
Metadata
Assignees
Labels
A-prettyArea: Pretty printing (including `-Z unpretty`)Area: Pretty printing (including `-Z unpretty`)