I tried this code: ```rust format!("\x7Ba}") ``` I expected to see this happen: a "no value found" error pointing at the `a` token Instead, this happened: a "no value found" error pointing at the `x7Ba`: ``` error[E0425]: cannot find value `a` in this scope --> src/main.rs:2:11 | 2 | format!("\x7Ba}") | ^^^^ not found in this scope ``` <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"cassaundra"}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->