Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit f238448

Browse files
committed
Add another ICE from issue-96572
1 parent fb6a088 commit f238448

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

ices/96572-2.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#![feature(type_alias_impl_trait)]
2+
3+
fn main() {
4+
type T = impl Copy;
5+
let foo: T = Some((1u32, 2u32));
6+
match foo {
7+
None => (),
8+
Some((a, b)) => (),
9+
}
10+
}

0 commit comments

Comments
 (0)