1// RUN: rm -rf %t.dir
2// RUN: mkdir -p %t.dir
3// RUN: not %clang %s -c -emit-llvm -o %t.dir
4// RUN: test -d %t.dir
5
6int main() { return 0; }
7