diff options
author | Aleksey Kladov <[email protected]> | 2021-06-18 21:33:01 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2021-06-18 21:33:01 +0100 |
commit | cc73abf72c46d9f13a176d93d1d38f3a72d638e3 (patch) | |
tree | 526ec0b4cf0c91baa404a7f84a486445da439ccb /crates/ide | |
parent | 181184a350046a460441209fd34821c2c796b066 (diff) |
minor: use minicore
Diffstat (limited to 'crates/ide')
-rw-r--r-- | crates/ide/src/inlay_hints.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/crates/ide/src/inlay_hints.rs b/crates/ide/src/inlay_hints.rs index 335d57a0d..48bab0b2e 100644 --- a/crates/ide/src/inlay_hints.rs +++ b/crates/ide/src/inlay_hints.rs | |||
@@ -908,9 +908,7 @@ fn main() { | |||
908 | fn unit_structs_have_no_type_hints() { | 908 | fn unit_structs_have_no_type_hints() { |
909 | check_types( | 909 | check_types( |
910 | r#" | 910 | r#" |
911 | enum Result<T, E> { Ok(T), Err(E) } | 911 | //- minicore: result |
912 | use Result::*; | ||
913 | |||
914 | struct SyntheticSyntax; | 912 | struct SyntheticSyntax; |
915 | 913 | ||
916 | fn main() { | 914 | fn main() { |