]> git.proxmox.com Git - rustc.git/blame - 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
CommitLineData
f20569fa
XL
1// rustfmt-newline_style: Windows
2
3#[macro_export]
4macro_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}