summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/issue-4036/one.rs
blob: 9f9675f51631a76519d27ba428fa8e724e8e2f0a (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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.",
            )
        }
    };
}