]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/source/issue-4036/one.rs
Rollup merge of #100804 - GuillaumeGomez:search-results-color-ayu, r=notriddle
[rust.git] / src / tools / rustfmt / tests / source / issue-4036 / one.rs
1 // rustfmt-format_strings: true
2
3 macro_rules! test {
4     () => {
5         fn from() {
6             None.expect(
7                 "We asserted that `buffer.len()` is exactly `$n` so we can expect `ApInt::from_iter` to be successful.",
8             )
9         }
10     };
11 }