summaryrefslogtreecommitdiffstats
path: root/tests/ui/hygiene/panic-location.rs
blob: 5cf169dfb141bdf68ac262e12b65e28f89ec441f (plain)
1
2
3
4
5
6
7
8
9
10
// 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);
}