mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
11 lines
314 B
Rust
11 lines
314 B
Rust
|
// run-fail
|
||
|
// check-run-results
|
||
|
// exec-env:RUST_BACKTRACE=0
|
||
|
//
|
||
|
// 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);
|
||
|
}
|