]> git.proxmox.com Git - rustc.git/blame - src/test/ui/const-generics/issue-79518-default_trait_method_normalization.stderr
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / src / test / ui / const-generics / issue-79518-default_trait_method_normalization.stderr
CommitLineData
6a06907d
XL
1error[E0308]: mismatched types
2 --> $DIR/issue-79518-default_trait_method_normalization.rs:16:32
3 |
4LL | Self::AssocInstance == [(); std::mem::size_of::<Self::Assoc>()];
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected associated type, found array `[(); _]`
6 |
7 = note: expected associated type `<Self as Foo>::Assoc`
8 found array `[(); _]`
9 = help: consider constraining the associated type `<Self as Foo>::Assoc` to `[(); _]` or calling a method that returns `<Self as Foo>::Assoc`
10 = note: for more information, visit https://doc.rust-lang.org/book/ch19-03-advanced-traits.html
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0308`.