Full report.
This run is five days old, so some things may have changed. There’s quite a bit of breakage here, some the same as previously.
This stuff is going to hit beta next week.
The read_exact thing is a mess. @bluss suggests it’s a conflict with custom implementations that already existed.
This reproduces the influent regression:
trait Tr {} struct S<'a>(&'a str); fn f(a: S, b: Box<Tr>) -> S { a }
Works on stable, not on nightly. Using another S instead of the Box<Tr> always fails, as expected.
S
Box<Tr>
That testcase looks like https://github.com/rust-lang/rust/issues/27248 .
Thanks for the tips @jschievink @eefriedman. I’ll investigate whether we can get that fixed.
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.