mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 14:21:44 +00:00
Check for eprintln on CI
This commit is contained in:
parent
2603a9e628
commit
bf569f8b29
7 changed files with 38 additions and 12 deletions
|
@ -10,6 +10,11 @@
|
|||
// For proving that RootDatabase is RefUnwindSafe.
|
||||
#![recursion_limit = "128"]
|
||||
|
||||
#[allow(unused)]
|
||||
macro_rules! eprintln {
|
||||
($($tt:tt)*) => { stdx::eprintln!($($tt)*) };
|
||||
}
|
||||
|
||||
pub mod mock_analysis;
|
||||
mod source_change;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue