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