-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Open
Labels
Description
rust-analyzer version: rust-analyzer 5b69a34fb 2022-05-25 dev
rustc version: rustc 1.61.0 (fe5b13d68 2022-05-18)
relevant settings: Using emacs with lsp-mode.
The test-log crate (https://github.com/d-e-s-o/test-log) comes with a replacement test macro. You use it like this:
use test_log::test;
#[test]
fn my_test() {
info!("I can see this now!");
}
But, with this use test_log::test, when I try to run the test using lsp-rust-analyzer-run it doesn't detect it as an option. If I remove the use, the test is runnable.