diff options
author | Aleksey Kladov <[email protected]> | 2020-04-06 15:58:16 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-04-06 16:00:18 +0100 |
commit | bf569f8b29d05782597d40ec98ee33bc2574763e (patch) | |
tree | 68a7af10960f55c5d4c1d2b50fea6a8c9f28e1d3 /crates/ra_hir_def/src | |
parent | 2603a9e628d304c8cb8fd08979e2f9c9afeac69e (diff) |
Check for eprintln on CI
Diffstat (limited to 'crates/ra_hir_def/src')
-rw-r--r-- | crates/ra_hir_def/src/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/crates/ra_hir_def/src/lib.rs b/crates/ra_hir_def/src/lib.rs index bd32ac20a..2d27bbdf8 100644 --- a/crates/ra_hir_def/src/lib.rs +++ b/crates/ra_hir_def/src/lib.rs | |||
@@ -7,6 +7,11 @@ | |||
7 | //! Note that `hir_def` is a work in progress, so not all of the above is | 7 | //! Note that `hir_def` is a work in progress, so not all of the above is |
8 | //! actually true. | 8 | //! actually true. |
9 | 9 | ||
10 | #[allow(unused)] | ||
11 | macro_rules! eprintln { | ||
12 | ($($tt:tt)*) => { stdx::eprintln!($($tt)*) }; | ||
13 | } | ||
14 | |||
10 | pub mod db; | 15 | pub mod db; |
11 | 16 | ||
12 | pub mod attr; | 17 | pub mod attr; |