Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
compile-flags
/
run-pass
/
repeated-debug-opt-flags.rs
blob: d584ec9fd280d0a5e18d14a80e2b442472bf1576 [
file
] [
log
] [
blame
] [
edit
]
//! regression test for https://github.com/rust-lang/rust/issues/24945
//@ run-pass
// This test is just checking that we continue to accept `-g -g -O -O`
// as options to the compiler.
//@ compile-flags:-g -g -O -O
fn
main
()
{
assert_eq
!(
1
,
1
);
}