]> git.lizzy.rs Git - rust.git/blob - tests/ui/rfc-2361-dbg-macro/dbg-macro-expected-behavior.run.stderr
Rollup merge of #106766 - GuillaumeGomez:rm-stripper-dead-code, r=notriddle
[rust.git] / tests / ui / rfc-2361-dbg-macro / dbg-macro-expected-behavior.run.stderr
1 [$DIR/dbg-macro-expected-behavior.rs:20] Unit = Unit
2 [$DIR/dbg-macro-expected-behavior.rs:21] a = Unit
3 [$DIR/dbg-macro-expected-behavior.rs:27] Point { x: 42, y: 24 } = Point {
4     x: 42,
5     y: 24,
6 }
7 [$DIR/dbg-macro-expected-behavior.rs:28] b = Point {
8     x: 42,
9     y: 24,
10 }
11 [$DIR/dbg-macro-expected-behavior.rs:36]
12 [$DIR/dbg-macro-expected-behavior.rs:40] &a = NoCopy(
13     1337,
14 )
15 [$DIR/dbg-macro-expected-behavior.rs:40] dbg!(& a) = NoCopy(
16     1337,
17 )
18 [$DIR/dbg-macro-expected-behavior.rs:45] f(&42) = 42
19 before
20 [$DIR/dbg-macro-expected-behavior.rs:50] { foo += 1; eprintln!("before"); 7331 } = 7331
21 [$DIR/dbg-macro-expected-behavior.rs:58] ("Yeah",) = (
22     "Yeah",
23 )
24 [$DIR/dbg-macro-expected-behavior.rs:61] 1 = 1
25 [$DIR/dbg-macro-expected-behavior.rs:61] 2 = 2
26 [$DIR/dbg-macro-expected-behavior.rs:65] 1u8 = 1
27 [$DIR/dbg-macro-expected-behavior.rs:65] 2u32 = 2
28 [$DIR/dbg-macro-expected-behavior.rs:65] "Yeah" = "Yeah"