]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-2810.rs
Merge commit 'e36a20c24f35a4cee82bbdc600289104c9237c22' into ra-sync-and-pms-component
[rust.git] / src / tools / rustfmt / tests / target / issue-2810.rs
1 // rustfmt-newline_style: Windows
2
3 #[macro_export]
4 macro_rules! hmmm___ffi_error {
5     ($result:ident) => {
6         pub struct $result {
7             success: bool,
8         }
9
10         impl $result {
11             pub fn foo(self) {}
12         }
13     };
14 }