We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 400f618 commit fb98f52Copy full SHA for fb98f52
crates/ide-completion/src/tests/type_pos.rs
@@ -753,6 +753,9 @@ fn completes_const_and_type_generics_separately() {
753
kw self::
754
"#]],
755
);
756
+ // FIXME: This should probably also suggest completions for types, at least those that have
757
+ // associated constants usable in this position. For example, a user could be typing
758
+ // `foo::<_, { usize::MAX }>()`, but we currently don't suggest `usize` in constant position.
759
check(
760
r#"
761
struct Foo;
0 commit comments