borrow_check/type_check: normalize Aggregate and Call operands.

This commit is contained in:
Eduard-Mihai Burtescu 2020-04-04 21:26:34 +03:00
parent ad1617bb49
commit 8989029476
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,15 @@
// run-pass
const HASH_LEN: usize = 20;
struct Hash([u8; HASH_LEN]);
fn init_hash(_: &mut [u8; HASH_LEN]) {}
fn foo<'a>() -> &'a () {
Hash([0; HASH_LEN]);
init_hash(&mut [0; HASH_LEN]);
&()
}
fn main() {
foo();
}