blob: 231a6c56a45b6d9d726859f5f216390aeb76a536 [file] [log] [blame]
Ted Kremenek7d9bd422009-12-03 01:34:15 +00001// RUN: clang -E -fexceptions %s -o - | FileCheck --check-prefix=CHECK-EXCEPTIONS %s
2// RUN: clang -E -fno-exceptions %s -o - | FileCheck --check-prefix=CHECK-NO-EXCEPTIONS %s
3
4#if __has_feature(cxx_exceptions)
5int foo();
6#else
7int bar();
8#endif
9
10// CHECK-EXCEPTIONS: foo
11// CHECK-NO-EXCEPTIONS: bar