Closed narpfel closed 7 months ago
I think using $crate is not correct here: It requires an otherwise unneeded use rstest_reuse; in the crate root. Using a leading :: guarantees that ::rstest_reuse is resolved to the rstest_reuse crate and not some name declared in the current crate.
$crate
use rstest_reuse;
::
::rstest_reuse
rstest_reuse
I think using
$crate
is not correct here: It requires an otherwise unneededuse rstest_reuse;
in the crate root. Using a leading::
guarantees that::rstest_reuse
is resolved to therstest_reuse
crate and not some name declared in the current crate.