forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
save-analysis: Add a related test case
- Loading branch information
Showing
1 changed file
with
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// check-pass | ||
// compile-flags: -Zsave-analysis | ||
|
||
// Check that this doesn't ICE when processing associated const in formal | ||
// argument and return type of functions defined inside function/method scope. | ||
|
||
pub trait Trait { | ||
type Assoc; | ||
} | ||
|
||
pub struct A; | ||
|
||
pub fn func() { | ||
fn _inner1<U: Trait>(_: U::Assoc) {} | ||
fn _inner2<U: Trait>() -> U::Assoc { unimplemented!() } | ||
|
||
impl A { | ||
fn _inner1<U: Trait>(self, _: U::Assoc) {} | ||
fn _inner2<U: Trait>(self) -> U::Assoc { unimplemented!() } | ||
} | ||
} | ||
|
||
fn main() {} |