Open
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() { }