You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// ./src/lib.rsinclude!("foo.rs");fnhowdy(){let _ = FIND_ME;// ^^^^^^^ triggering find usages here works fineprintln!("{FIND_ME}");// ^^^^^^^ fine here, too}// ./src/foo.rsconstFIND_ME:i32 = 0;// ^^^^^^^ not finding any usages here