summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/ascription/issue-54516.rs
blob: 1f34e6943bab2b5213db0f246672b9b14764e9d3 (plain)
1
2
3
4
5
6
7
// run-rustfix
use std::collections::BTreeMap;

fn main() {
    println!("{}", std::mem:size_of::<BTreeMap<u32, u32>>());
    //~^ ERROR type ascription cannot be followed by a function call
}