Use fixme instead of todo

This commit is contained in:
unexge 2020-08-16 16:42:44 +03:00
parent 0847bc801e
commit 585f5d4901
2 changed files with 2 additions and 2 deletions

View file

@ -709,7 +709,7 @@ fn qux(bar: Bar, baz: Baz) {
#[test]
fn expanding_glob_import_with_macro_defs() {
// TODO: this is currently fails because `Definition::find_usages` ignores macros
// FIXME: this is currently fails because `Definition::find_usages` ignores macros
// https://github.com/rust-analyzer/rust-analyzer/issues/3484
//
// check_assist(

View file

@ -225,7 +225,7 @@ pub fn classify_name(sema: &Semantics<RootDatabase>, name: &ast::Name) -> Option
}
}
#[derive(Debug, Clone, PartialEq, Eq)]
#[derive(Debug)]
pub enum NameRefClass {
ExternCrate(Crate),
Definition(Definition),