2024-02-16 14:02:50 -06:00
|
|
|
//@ run-fail
|
|
|
|
//@ check-run-results
|
|
|
|
//@ exec-env:RUST_BACKTRACE=0
|
2020-03-17 10:45:02 -05:00
|
|
|
//
|
|
|
|
// Regression test for issue #70963
|
|
|
|
// The captured stderr from this test reports a location
|
|
|
|
// inside `VecDeque::with_capacity`, instead of `<::core::macros::panic macros>`
|
|
|
|
fn main() {
|
|
|
|
std::collections::VecDeque::<String>::with_capacity(!0);
|
|
|
|
}
|