-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
A-macromacro expansionmacro expansionS-actionableSomeone could pick this issue up and work on it right nowSomeone could pick this issue up and work on it right now
Description
Rust analyzer nightly (83a2725) is reporting macros not resolving. Right-click go to definition and showing docs is working but it's indicating that it is unresolved at the same time. Stable is working.
Repro:
[package]
name = "slogtest"
version = "0.1.0"
edition = "2018"
[dependencies]
slog = "2.5.2"
slog-term = "2.6.0"
use slog::*;
fn main() {
let decorator = slog_term::PlainSyncDecorator::new(std::io::stdout());
let drain = slog_term::FullFormat::new(decorator).build().fuse();
let root_log = slog::Logger::root(drain, o!("test" => "test"));
info!(root_log, "test");
}
Related reports in #6847
Metadata
Metadata
Assignees
Labels
A-macromacro expansionmacro expansionS-actionableSomeone could pick this issue up and work on it right nowSomeone could pick this issue up and work on it right now
