summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/ascription/issue-54516.stderr
blob: 1ab9093e58445279f307278cdc9e7cd0f8483443 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error: type ascription cannot be followed by a function call
  --> $DIR/issue-54516.rs:5:20
   |
LL |     println!("{}", std::mem:size_of::<BTreeMap<u32, u32>>());
   |                    ^^^^^^^^-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |                            |
   |                            help: maybe write a path separator here: `::`
   |
   = note: `#![feature(type_ascription)]` lets you annotate an expression with a type: `<expr>: <type>`

error: aborting due to previous error