diff options
Diffstat (limited to 'test/C++Frontend/EH/dead_try_block.cpp')
-rw-r--r-- | test/C++Frontend/EH/dead_try_block.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/test/C++Frontend/EH/dead_try_block.cpp b/test/C++Frontend/EH/dead_try_block.cpp deleted file mode 100644 index 00a5b1108e..0000000000 --- a/test/C++Frontend/EH/dead_try_block.cpp +++ /dev/null @@ -1,13 +0,0 @@ -// This testcase doesn't actually DO any EH -#include <stdio.h> - -static void foo() {} -int main() { - try { - foo(); - } catch(...) { - return 1; - } - printf("All ok\n"); - return 0; -} |