summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-4036/one.rs
blob: 54e490b7fbeae313c0ef898a30dd2f4fbf7374a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// rustfmt-format_strings: true

macro_rules! test {
    () => {
        fn from() {
            None.expect(
                "We asserted that `buffer.len()` is exactly `$n` so we can expect \
                 `ApInt::from_iter` to be successful.",
            )
        }
    };
}