]> git.proxmox.com Git - rustc.git/blob - src/tools/rustfmt/tests/target/issue-2810.rs
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.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 }