]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-24363.stderr
Merge branch 'debian/experimental' into debian/sid
[rustc.git] / src / test / ui / issues / issue-24363.stderr
1 error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
2 --> $DIR/issue-24363.rs:2:7
3 |
4 LL | 1.create_a_type_error[
5 | ^^^^^^^^^^^^^^^^^^^
6
7 error[E0369]: binary operation `+` cannot be applied to type `()`
8 --> $DIR/issue-24363.rs:3:11
9 |
10 LL | ()+()
11 | --^-- ()
12 | |
13 | ()
14 |
15 = note: an implementation of `std::ops::Add` might be missing for `()`
16
17 error: aborting due to 2 previous errors
18
19 Some errors occurred: E0369, E0610.
20 For more information about an error, try `rustc --explain E0369`.