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

Commit 19d689d

Browse files
authored
Merge pull request #1269 from JohnTitor/issue-96572-2
Add another ICE from issue-96572
2 parents fb6a088 + f238448 commit 19d689d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

ices/96572-2.rs

+10
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)