summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/type-ascription-instead-of-method.rs
blob: a603e09e7e8390b8322079d9628d85b1f83b6bf4 (plain)
1
2
3
4
5
// run-rustfix
fn main() {
    let _ = Box:new("foo".to_string());
    //~^ ERROR expected type, found
}