]> git.proxmox.com Git - rustc.git/blame - src/test/ui/specialization/deafult-generic-associated-type-bound.rs
New upstream version 1.55.0+dfsg1
[rustc.git] / src / test / ui / specialization / deafult-generic-associated-type-bound.rs
CommitLineData
f035d41b
XL
1// Check that default generics associated types are validated.
2
3#![feature(specialization)]
4#![feature(generic_associated_types)]
5//~^^ WARNING `specialization` is incomplete
f035d41b
XL
6
7trait X {
29967ef6 8 type U<'a>: PartialEq<&'a Self> where Self: 'a;
f035d41b
XL
9 fn unsafe_compare<'b>(x: Option<Self::U<'b>>, y: Option<&'b Self>) {
10 match (x, y) {
11 (Some(a), Some(b)) => a == b,
12 _ => false,
13 };
14 }
15}
16
17impl<T: 'static> X for T {
18 default type U<'a> = &'a T;
19 //~^ ERROR can't compare `T` with `T`
20}
21
22struct NotComparable;
23
24pub fn main() {
25 <NotComparable as X>::unsafe_compare(None, None);
26}