blob: 8fd92fc179e2fffb40a716ea14ea24106ea50c2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// rustfmt-version: Two
fn main() {
trace!(
"get some longer length in here yes yes {} {}",
"hello", "world"
);
debug!(
"get some longer length in here yes yes {} {}",
"hello", "world"
);
}
|