Sha256: 830581700736527e224bd923da3cd9c215e68556d2379c678174c08eff1501d6
Contents?: true
Size: 763 Bytes
Versions: 20
Compression:
Stored size: 763 Bytes
Contents
error[E0308]: mismatched types --> tests/ui-stable/transmute-mut-src-dst-not-references.rs:17:59 | 17 | const SRC_DST_NOT_REFERENCES: &mut usize = transmute_mut!(0usize); | ---------------^^^^^^- | | | | | expected `&mut _`, found `usize` | expected due to this | = note: expected mutable reference `&mut _` found type `usize` help: consider mutably borrowing here | 17 | const SRC_DST_NOT_REFERENCES: &mut usize = transmute_mut!(&mut 0usize); | ++++
Version data entries
20 entries across 20 versions & 1 rubygems