1## Test the use of "--" on the commandline 2 3# RUN: echo contents > %t.txt 4 5# RUN: rm -f %t.ar 6# RUN: llvm-ar rc -- %t.ar %t.txt 2>&1 | count 0 7 8# RUN: llvm-ar p %t.ar | FileCheck %s 9# CHECK: contents 10