Skip to content

Commit 5269459

Browse files
committed
add lazy normalization regression tests
1 parent 567ad74 commit 5269459

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// check-pass
2+
3+
trait Trait<T> {
4+
const ASSOC_CONST: usize = 0;
5+
}
6+
7+
impl Trait<()> for u8 {}
8+
9+
// `u8::ASSOC_CONST` is resolved today, but will be ambiguous
10+
// under lazy normalization.
11+
fn foo<T, U>() -> [(T, U); u8::ASSOC_CONST]
12+
where
13+
u8: Trait<T> + Trait<U>,
14+
{
15+
todo!()
16+
}
17+
18+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// check-pass
2+
3+
// If we allow the parent generics here without using lazy normalization
4+
// this results in a cycle error.
5+
struct Foo<T, U>(T, U);
6+
7+
impl<T> From<[u8; 1 + 1]> for Foo<T, [u8; 1 + 1]> {
8+
fn from(value: [u8; 1 + 1]) -> Foo<T, [u8; 1 + 1]> {
9+
todo!();
10+
}
11+
}
12+
13+
fn break_me<T>()
14+
where
15+
[u8; 1 + 1]: From<[u8; 1 + 1]>
16+
{}
17+
18+
fn main() {}

0 commit comments

Comments
 (0)