rust/tests/ui/generator
David Wood 037b27430b
abi: unsized field in union - assert to delay bug
Unions cannot have unsized fields, and as such, layout computation for
unions asserts that each union field is sized (as this would normally
have halted compilation earlier).

However, if a generator ends up with an unsized local - a circumstance
in which an error will always have been emitted earlier, for example, if
attempting to dereference a `&str` - then the generator transform will
produce a union with an unsized field.

Since #110107, later passes will be run, such as constant propagation,
and can attempt layout computation on the generator, which will result
in layout computation of `str` in the context of it being a field of a
union - and so the aforementioned assertion would cause an ICE.

It didn't seem appropriate to try and detect this case in the MIR body
and skip this specific pass; tainting the MIR body or delaying a bug
from the generator transform (or elsewhere) wouldn't prevent this either
(as neither would prevent the later pass from running); and tainting when
the deref of `&str` is reported, if that's possible, would unnecessarily
prevent potential other errors from being reported later in compilation,
and is very tailored to this specific case of getting a unsized type in
a generator.

Given that this circumstance can only happen when an error should have
already been reported, the correct fix appears to be just changing the
assert to a delayed bug. This will still assert if there is some
circumstance where this occurs and no error has been reported, but it
won't crash the compiler in this instance.

Signed-off-by: David Wood <david@davidtw.co>
2023-07-25 15:50:39 +01:00
..
auxiliary
print
addassign-yield.rs
async-generator-issue-67158.rs
async-generator-issue-67158.stderr
auto-trait-regions.drop_tracking_mir.stderr
auto-trait-regions.drop_tracking.stderr
auto-trait-regions.no_drop_tracking.stderr
auto-trait-regions.rs
borrow-in-tail-expr.rs
borrowing.drop_tracking_mir.stderr
borrowing.drop_tracking.stderr
borrowing.no_drop_tracking.stderr
borrowing.rs
clone-impl-async.rs
clone-impl-async.stderr
clone-impl-static.rs
clone-impl-static.stderr
clone-impl.rs
clone-impl.stderr
conditional-drop.rs
control-flow.rs
derived-drop-parent-expr.rs
discriminant.rs
drop-and-replace.rs
drop-control-flow.rs
drop-env.rs
drop-track-addassign-yield.rs
drop-tracking-error-body.rs
drop-tracking-error-body.stderr
drop-tracking-parent-expression.drop_tracking_mir.stderr
drop-tracking-parent-expression.drop_tracking.stderr
drop-tracking-parent-expression.no_drop_tracking.stderr
drop-tracking-parent-expression.rs
drop-tracking-yielding-in-match-guards.rs
drop-yield-twice.rs
drop-yield-twice.stderr
dropck-resume.rs
dropck-resume.stderr
dropck.rs
dropck.stderr
generator-region-requirements.migrate.stderr
generator-region-requirements.rs
generator-region-requirements.stderr
generator-resume-after-panic.rs
generator-with-nll.rs
generator-with-nll.stderr
generator-yielding-or-returning-itself.rs
generator-yielding-or-returning-itself.stderr
issue-44197.rs
issue-45729-unsafe-in-generator.mir.stderr
issue-45729-unsafe-in-generator.rs
issue-45729-unsafe-in-generator.thir.stderr
issue-48048.rs
issue-48048.stderr
issue-52304.rs
issue-52398.rs
issue-52398.stderr
issue-53548-1.rs
issue-53548.rs
issue-57017.no_drop_tracking.stderr
issue-57017.rs
issue-57084.rs
issue-57084.stderr
issue-57478.no_drop_tracking.stderr
issue-57478.rs
issue-58888.rs
issue-61442-stmt-expr-with-drop.rs
issue-62506-two_awaits.rs
issue-64620-yield-array-element.rs
issue-64620-yield-array-element.stderr
issue-68112.drop_tracking_mir.stderr
issue-68112.drop_tracking.stderr
issue-68112.no_drop_tracking.stderr
issue-68112.rs
issue-69017.rs
issue-69039.rs
issue-87142.rs
issue-88653.rs
issue-88653.stderr
issue-91477.rs
issue-91477.stderr
issue-93161.rs
issue-102645.rs
issue-102645.stderr
issue-105084.drop_tracking_mir.stderr
issue-105084.rs
issue-110929-generator-conflict-error-ice.rs
issue-110929-generator-conflict-error-ice.stderr
issue-113279.rs abi: unsized field in union - assert to delay bug 2023-07-25 15:50:39 +01:00
issue-113279.stderr abi: unsized field in union - assert to delay bug 2023-07-25 15:50:39 +01:00
iterator-count.rs
layout-error.rs
layout-error.stderr
live-upvar-across-yield.rs
match-bindings.rs
match-bindings.stderr
metadata-sufficient-for-layout.rs
metadata-sufficient-for-layout.stderr
nested_generators.rs
niche-in-generator.rs
non-static-is-unpin.rs
not-send-sync.drop_tracking_mir.stderr
not-send-sync.drop_tracking.stderr
not-send-sync.no_drop_tracking.stderr
not-send-sync.rs
overlap-locals.rs
panic-drops-resume.rs
panic-drops.rs
panic-safe.rs
parent-expression.drop_tracking_mir.stderr
parent-expression.drop_tracking.stderr
parent-expression.no_drop_tracking.stderr
parent-expression.rs
partial-drop.drop_tracking.stderr
partial-drop.no_drop_tracking.stderr
partial-drop.rs
partial-initialization-across-yield.rs
partial-initialization-across-yield.stderr
pattern-borrow.rs
pattern-borrow.stderr
pin-box-generator.rs
reborrow-mut-upvar.rs
reborrow-mut-upvar.stderr
ref-escapes-but-not-over-yield.rs
ref-escapes-but-not-over-yield.stderr
ref-upvar-not-send.rs
ref-upvar-not-send.stderr
reinit-in-match-guard.rs
resume-after-return.rs
resume-arg-late-bound.rs
resume-arg-late-bound.stderr
resume-arg-size.rs
resume-live-across-yield.rs
retain-resume-ref.drop_tracking_mir.stderr
retain-resume-ref.drop_tracking.stderr
retain-resume-ref.no_drop_tracking.stderr
retain-resume-ref.rs
size-moved-locals.rs
sized-yield.rs
sized-yield.stderr
smoke-resume-args.rs
smoke.rs
static-generators.rs
static-mut-reference-across-yield.rs
static-not-unpin.current.stderr
static-not-unpin.next.stderr
static-not-unpin.rs
static-reference-across-yield.rs
too-live-local-in-immovable-gen.rs
too-live-local-in-immovable-gen.stderr
too-many-parameters.rs
too-many-parameters.stderr
type-mismatch-error.rs
type-mismatch-error.stderr
type-mismatch-signature-deduction.rs
type-mismatch-signature-deduction.stderr
unresolved-ct-var-drop-tracking.rs
unresolved-ct-var-drop-tracking.stderr
unresolved-ct-var.rs
unresolved-ct-var.stderr
xcrate-reachable.rs
xcrate.rs
yield-in-args-rev.rs
yield-in-args-rev.stderr
yield-in-args.rs
yield-in-args.stderr
yield-in-const.rs
yield-in-const.stderr
yield-in-function.rs
yield-in-function.stderr
yield-in-initializer.rs
yield-in-initializer.stderr
yield-in-static.rs
yield-in-static.stderr
yield-outside-generator-issue-78653.rs
yield-outside-generator-issue-78653.stderr
yield-subtype.rs
yield-subtype.stderr
yield-while-iterating.rs
yield-while-iterating.stderr
yield-while-local-borrowed.rs
yield-while-local-borrowed.stderr
yield-while-ref-reborrowed.rs
yield-while-ref-reborrowed.stderr
yielding-in-match-guards.rs