]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-54943-2.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-54943-2.rs
CommitLineData
0731742a
XL
1// This test is a minimal version of an ICE in the dropck-eyepatch tests
2// found in the fix for #54943. In particular, this test is in unreachable
3// code as the initial fix for this ICE only worked if the code was reachable.
4
60c5eb7d 5// check-pass
0731742a
XL
6
7fn foo<T>(_t: T) {
8}
9
10fn main() {
11 return;
12
13 struct A<'a, B: 'a>(&'a B);
14 let (a1, a2): (String, A<_>) = (String::from("auto"), A(&"this"));
15 foo((a1, a2));
16}