summaryrefslogtreecommitdiff
path: root/tests/ui/type/ascription/issue-60933.fixed
blob: 3e8be3875b34eb8d3544d3b6554bda64a033eb21 (plain)
1
2
3
4
5
// run-rustfix
fn main() {
    let _: usize = std::mem::size_of::<u32>();
    //~^ ERROR type ascription cannot be followed by a function call
}