xref: /minix3/external/bsd/llvm/dist/llvm/test/tools/llvm-lit/chain.c (revision b5e2faaaaf60a8b9a02f8d72f64caa56a87eb312)
1 // This test should fail. lit used to interpret this as:
2 //   (false && false) || true
3 // instead of the intended
4 //   false && (false || true
5 //
6 // RUN: false
7 // RUN: false || true
8 //
9 // XFAIL: *
10