summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-24945-repeat-dash-opts.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/issues/issue-24945-repeat-dash-opts.rs')
-rw-r--r--tests/ui/issues/issue-24945-repeat-dash-opts.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-24945-repeat-dash-opts.rs b/tests/ui/issues/issue-24945-repeat-dash-opts.rs
new file mode 100644
index 000000000..0f92fc2f7
--- /dev/null
+++ b/tests/ui/issues/issue-24945-repeat-dash-opts.rs
@@ -0,0 +1,10 @@
+// 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
+// ignore-asmjs wasm2js does not support source maps yet
+
+fn main() {
+ assert_eq!(1, 1);
+}