Skip to content

Commit 0784825

Browse files
committed
Add 83466
Issue: rust-lang/rust#83466
1 parent a1f0df4 commit 0784825

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

ices/83466.rs

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
struct S;
2+
impl S {
3+
fn func<'a, U>(self) -> U {
4+
todo!()
5+
}
6+
}
7+
fn dont_crash<'a, U>() {
8+
S.func::<'a, dont_crash>()
9+
}
10+
11+
fn main() {}

0 commit comments

Comments
 (0)