summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/ascription/issue-60933.rs
blob: 2a4ad7bdc4ee777d74ef3630b8a41809b196a913 (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
}