]> git.proxmox.com Git - rustc.git/blob - src/tools/rustfmt/tests/target/issue-4036/one.rs
New upstream version 1.61.0+dfsg1
[rustc.git] / src / tools / rustfmt / tests / target / 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 \
8 `ApInt::from_iter` to be successful.",
9 )
10 }
11 };
12 }