]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-2810.rs
Rollup merge of #95040 - frank-king:fix/94981, r=Mark-Simulacrum
[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 }