]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-50825-1.rs
Auto merge of #53286 - nagisa:cast-assumes, r=eddyb
[rust.git] / src / test / ui / issues / issue-50825-1.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // run-pass
12 // regression test for issue #50825
13 // Make sure that the `impl` bound (): X<T = ()> is preferred over
14 // the (): X bound in the where clause.
15
16 trait X {
17     type T;
18 }
19
20 trait Y<U>: X {
21     fn foo(x: &Self::T);
22 }
23
24 impl X for () {
25     type T = ();
26 }
27
28 impl<T> Y<Vec<T>> for () where (): Y<T> {
29     fn foo(_x: &()) {}
30 }
31
32 fn main () {}