diff options
author | Paul Daniel Faria <[email protected]> | 2020-05-24 18:20:03 +0100 |
---|---|---|
committer | Paul Daniel Faria <[email protected]> | 2020-06-27 15:09:42 +0100 |
commit | c622551ec27c9d68e8310c2408317253952b6f44 (patch) | |
tree | 3999d6da1ad5afc266a117642d69977e6eba5cff /crates | |
parent | 499d4c454d1a66d10c3cf4c9bacbdb15f295af39 (diff) |
Fix typo in test
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_ide/src/syntax_highlighting/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide/src/syntax_highlighting/tests.rs b/crates/ra_ide/src/syntax_highlighting/tests.rs index 43f554a29..e9a6fbcdf 100644 --- a/crates/ra_ide/src/syntax_highlighting/tests.rs +++ b/crates/ra_ide/src/syntax_highlighting/tests.rs | |||
@@ -384,7 +384,7 @@ impl HasUnsafeFn { | |||
384 | } | 384 | } |
385 | 385 | ||
386 | fn main() { | 386 | fn main() { |
387 | let x = &5 as *usize; | 387 | let x = &5 as *const usize; |
388 | unsafe { | 388 | unsafe { |
389 | unsafe_fn(); | 389 | unsafe_fn(); |
390 | HasUnsafeFn.unsafe_method(); | 390 | HasUnsafeFn.unsafe_method(); |