summaryrefslogtreecommitdiff
path: root/tests/ui/type/ascription/issue-54516.fixed
blob: 48622663b4d5e2119c7b4ebcdd2d5779a57d0c07 (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 path separator must be a double colon
}