YthanZhang
YthanZhang
Hi, I just encountered this issue, the project is very minimal, only containing `Cargo.toml` and `src/main.rs` main.rs ```rust use yew::prelude::*; fn main() { yew::start_app::(); } #[function_component(App)] pub fn app() ->...
@dima74 Enabling `org.rust.cargo.evaluate.build.scripts` fixed the issue. Enabling `org.rust.macros.proc` didn't seem to affect this issue.
This code doesn't produce the false positive ```rust fn simple_closure() { let return_it = |x| -> _ { x }; let s = return_it("test string"); println!("{}", s); } ``` But...
Also doesn't work for me, transfter shows no error, but have no effect.