We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4cf405 commit 6caf79cCopy full SHA for 6caf79c
crates/rust-analyzer/tests/slow-tests/main.rs
@@ -861,6 +861,7 @@ edition = "2021"
861
bar = {path = "../bar"}
862
863
//- /foo/src/main.rs
864
+#![allow(internal_features)]
865
#![feature(rustc_attrs, decl_macro)]
866
use bar::Bar;
867
@@ -938,7 +939,7 @@ pub fn foo(_input: TokenStream) -> TokenStream {
938
939
let res = server.send_request::<HoverRequest>(HoverParams {
940
text_document_position_params: TextDocumentPositionParams::new(
941
server.doc_id("foo/src/main.rs"),
- Position::new(11, 9),
942
+ Position::new(12, 9),
943
),
944
work_done_progress_params: Default::default(),
945
});
0 commit comments