xref: /aosp_15_r20/external/clang/test/Parser/ms-inline-asm-nested-braces.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li // REQUIRES: x86-registered-target
2*67e74705SXin Li // RUN: %clang_cc1 %s -triple i386-apple-darwin10 -verify -fasm-blocks
3*67e74705SXin Li 
t_fail()4*67e74705SXin Li int t_fail() { // expected-note {{to match this}}
5*67e74705SXin Li   __asm
6*67e74705SXin Li   { // expected-note {{to match this}}
7*67e74705SXin Li     { // expected-note {{to match this}}
8*67e74705SXin Li       {
9*67e74705SXin Li       } // expected-error 3 {{expected}}
10