Chromium Code Reviews| Index: test/win/compiler_flags/exception_handling_on.cc |
| diff --git a/test/win/compiler_flags/exception_handling_on.cc b/test/win/compiler_flags/exception_handling_on.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..10a2fc24aa5be951c2b8082a4e9e43a523f9b155 |
| --- /dev/null |
| +++ b/test/win/compiler_flags/exception_handling_on.cc |
| @@ -0,0 +1,10 @@ |
| +// Copyright (c) 2012 Google Inc. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +int main() { |
| + try { |
| + } catch (...) { |
| + } |
| + return 0; |
| +} |