mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-28 20:16:58 +03:00
12 lines
367 B
Rust
12 lines
367 B
Rust
//@ run-fail
|
|
//@ check-run-results
|
|
//@ exec-env:RUST_BACKTRACE=0
|
|
//@ normalize-stderr: ".rs:\d+:\d+" -> ".rs:LL:CC"
|
|
//@ normalize-stderr: "/rustc(?:-dev)?/[a-z0-9.]+/" -> ""
|
|
//
|
|
// Regression test for issue #70963
|
|
// The reported panic location should not be `<::core::macros::panic macros>`.
|
|
fn main() {
|
|
std::collections::VecDeque::<String>::with_capacity(!0);
|
|
}
|