Skip to content

Commit 58351ae

Browse files
committedNov 6, 2023
add test for trivial bound not holding in soa-derive
1 parent 2beca15 commit 58351ae

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

‎tests/ui/late-bound-lifetimes/predicate-is-global.rs

+8
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,12 @@ impl Inherent {
2929
fn inherent(&self) {}
3030
}
3131

32+
// This trivial bound doesn't hold, but the unused lifetime tripped up that check after #117589, and
33+
// showed up in its crater results (in `soa-derive 0.13.0`).
34+
fn do_it()
35+
where
36+
for<'a> Inherent: Clone,
37+
{
38+
}
39+
3240
fn main() {}

0 commit comments

Comments
 (0)