We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a53c6ee commit 243ef31Copy full SHA for 243ef31
1 file changed
tests/ui/abi/compatibility.rs
@@ -105,6 +105,7 @@ test_transparent!(zst, Zst);
105
test_transparent!(unit, ());
106
test_transparent!(pair, (i32, f32)); // mixing in some floats since they often get special treatment
107
test_transparent!(triple, (i8, i16, f32)); // chosen to fit into 64bit
108
+test_transparent!(float_triple, (f64, f64, f64)); // hits a bug in our MIPS64 adjustments
109
test_transparent!(tuple, (i32, f32, i64, f64));
110
test_transparent!(empty_array, [u32; 0]);
111
test_transparent!(empty_1zst_array, [u8; 0]);
0 commit comments