Closed
Description
This is using clippy clippy 0.0.212 (2e26fdc2 2018-11-22)
Given this example, clippy will suggest TestStruct::from_something()
entirely be replaced with Self()
, which is incorrect, and causes the compiler to ICE due to rust-lang/rust#56611
Of note is that VSCode with RLS will offer code actions to automatically do this transformation.