forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#33478 - xen0n:normalize-callee-trait-ref, r…
…=eddyb trans: callee: normalize trait_ref before use This fixes rust-lang#33436 and rust-lang#33461. Ran the tests and nothing else seems to be affected. P.S. How to write the regression test for this fix? Does this qualify as run-pass or run-make, as the test only needs to be successfully compiled to be considered passed? Will add the testcase (the minimal example in rust-lang#33461 seems fit) after clarifying this.
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
use std::marker::PhantomData; | ||
|
||
struct TheType<T> { | ||
t: PhantomData<T> | ||
} | ||
|
||
pub trait TheTrait { | ||
type TheAssociatedType; | ||
} | ||
|
||
impl TheTrait for () { | ||
type TheAssociatedType = (); | ||
} | ||
|
||
pub trait Shape<P: TheTrait> { | ||
fn doit(&self) { | ||
} | ||
} | ||
|
||
impl<P: TheTrait> Shape<P> for TheType<P::TheAssociatedType> { | ||
} | ||
|
||
fn main() { | ||
let ball = TheType { t: PhantomData }; | ||
let handle: &Shape<()> = &ball; | ||
} |