1 // RUN: %clang_cc1 -triple x86_64-windows-msvc -fms-extensions -fsyntax-only -fexceptions -fobjc-exceptions -verify %s
5 void use_seh_after_objc() {
6 @try { // expected-note {{conflicting '@try' here}}
10 __try { // expected-error {{cannot use Objective-C '@try' in the same function as SEH '__try'}}
16 void use_objc_after_seh() {
17 __try { // expected-note {{conflicting '__try' here}}
21 @try { // expected-error {{cannot use Objective-C '@try' in the same function as SEH '__try'}}