You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/ui/const-generics/issue-112505-overflow.stderr
+2-2
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@ error[E0512]: cannot transmute between types of different sizes, or dependently-
4
4
LL | unsafe { std::mem::transmute(v) }
5
5
| ^^^^^^^^^^^^^^^^^^^
6
6
|
7
-
= note: source type: `[[[u32; 8888888]; 9999999]; 777777777]` (values of the type `[[[u32; 8888888]; 9999999]; 777777777]` are too big for the current architecture)
= note: source type: `[[[u32; 8888888]; 9999999]; 777777777]` (values of the type `[[u32; 8888888]; 9999999]` are too big for the current architecture)
8
+
= note: target type: `[[[u32; 9999999]; 777777777]; 239]` (values of the type `[[u32; 9999999]; 777777777]` are too big for the current architecture)
Copy file name to clipboardExpand all lines: tests/ui/const-generics/transmute-fail.stderr
+2-2
Original file line number
Diff line number
Diff line change
@@ -43,8 +43,8 @@ error[E0512]: cannot transmute between types of different sizes, or dependently-
43
43
LL | std::mem::transmute(v)
44
44
| ^^^^^^^^^^^^^^^^^^^
45
45
|
46
-
= note: source type: `[[[u32; 8888888]; 9999999]; 777777777]` (values of the type `[[[u32; 8888888]; 9999999]; 777777777]` are too big for the current architecture)
47
-
= note: target type: `[[[u32; 9999999]; 777777777]; 8888888]` (values of the type `[[[u32; 9999999]; 777777777]; 8888888]` are too big for the current architecture)
46
+
= note: source type: `[[[u32; 8888888]; 9999999]; 777777777]` (values of the type `[[u32; 8888888]; 9999999]` are too big for the current architecture)
47
+
= note: target type: `[[[u32; 9999999]; 777777777]; 8888888]` (values of the type `[[u32; 9999999]; 777777777]` are too big for the current architecture)
0 commit comments