summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-2810.rs
blob: 34140c7a1fc651164dc1c0289f0a51bfebcbdcf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// rustfmt-newline_style: Windows

#[macro_export]
macro_rules! hmmm___ffi_error {
    ($result:ident) => {
        pub struct $result {
            success: bool,
        }

        impl $result {
            pub fn foo(self) {}
        }
    };
}