summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/suggest-std-when-using-type.rs
blob: 5abc016deb076422736209c63f70889a87850f19 (plain)
1
2
3
4
5
6
7
8
// run-rustfix
fn main() {
    let pi = f32::consts::PI; //~ ERROR ambiguous associated type
    let bytes = "hello world".as_bytes();
    let string = str::from_utf8(bytes).unwrap();
    //~^ ERROR no function or associated item named `from_utf8` found
    println!("{pi} {bytes:?} {string}");
}