blob: 83fbe13e7eb8c489ece162b497b64510cb5e287c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#[allow(unused_macros)]
macro_rules! hide_from_rustfmt {
($mod:item) => {
$mod
};
}
#[cfg(not(all(
feature = "derive",
feature = "full",
feature = "parsing",
feature = "printing",
feature = "visit",
feature = "visit-mut",
feature = "fold",
feature = "clone-impls",
feature = "extra-traits",
feature = "proc-macro",
)))]
hide_from_rustfmt! {
mod error;
}
|