]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-24945-repeat-dash-opts.rs
Auto merge of #104013 - notriddle:notriddle/rustdoc-sizeof, r=GuillaumeGomez
[rust.git] / src / test / ui / issues / issue-24945-repeat-dash-opts.rs
1 // run-pass
2 // This test is just checking that we continue to accept `-g -g -O -O`
3 // as options to the compiler.
4
5 // compile-flags:-g -g -O -O
6 // ignore-asmjs wasm2js does not support source maps yet
7
8 fn main() {
9     assert_eq!(1, 1);
10 }