2025-08-30 10:38:23 +02:00
|
|
|
// FIXME(#61117): Remove revisions once x86_64-gnu-debug CI job sets rust.debuginfo-level-tests=2
|
|
|
|
|
// NOTE: The .stderr for both revisions shall be identical.
|
|
|
|
|
//@ revisions: no-debuginfo full-debuginfo
|
|
|
|
|
//@[no-debuginfo] compile-flags: -Cdebuginfo=0
|
|
|
|
|
//@[full-debuginfo] compile-flags: -Cdebuginfo=2
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ build-fail
|
2019-04-09 22:08:57 +02:00
|
|
|
|
2014-10-15 01:53:37 +03:00
|
|
|
fn generic<T: Copy>(t: T) {
|
2014-12-20 15:20:51 +13:00
|
|
|
let s: [T; 1518600000] = [t; 1518600000];
|
2020-11-18 10:42:49 +01:00
|
|
|
//~^ ERROR values of the type `[[u8; 1518599999]; 1518600000]` are too big
|
2014-10-15 01:53:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
2014-12-20 15:20:51 +13:00
|
|
|
let x: [u8; 1518599999] = [0; 1518599999];
|
|
|
|
|
generic::<[u8; 1518599999]>(x);
|
2014-10-15 01:53:37 +03:00
|
|
|
}
|