Sign in
rust
/
rust
/
9b1f20d20dc00a950f99a00a34be9d2ca78d1f0d
/
.
/
tests
/
ui
/
suggestions
/
suggest-std-when-using-type.fixed
blob: 0547940f94d316a5c6b84663af8bac157f1682d5 [
file
]
//@ run-rustfix
fn main
()
{
let
pi
=
std
::
f32
::
consts
::
PI
;
//~ ERROR ambiguous associated type
println
!(
"{pi}"
);
}