]> git.lizzy.rs Git - rust.git/blob - tests/ui/type-alias-impl-trait/multiple-def-uses-in-one-fn3.rs
Rollup merge of #106766 - GuillaumeGomez:rm-stripper-dead-code, r=notriddle
[rust.git] / tests / ui / type-alias-impl-trait / multiple-def-uses-in-one-fn3.rs
1 // https://github.com/rust-lang/rust/issues/73481
2 // This test used to cause unsoundness, since one of the two possible
3 // resolutions was chosen at random instead of erroring due to conflicts.
4
5 #![feature(type_alias_impl_trait)]
6
7 type X<A: ToString + Clone, B: ToString + Clone> = impl ToString;
8
9 fn f<A: ToString + Clone, B: ToString + Clone>(a: A, b: B) -> (X<A, B>, X<B, A>) {
10     (a, b)
11 }
12
13 fn g<A: ToString + Clone, B: ToString + Clone>(a: A, b: B) -> (X<A, B>, X<A, B>) {
14     (a, b)
15     //~^ ERROR mismatched types
16 }
17
18 fn main() {}