diff options
Diffstat (limited to 'test/Sema/exprs.c')
-rw-r--r-- | test/Sema/exprs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/Sema/exprs.c b/test/Sema/exprs.c index 17b1aa2..5da4f94 100644 --- a/test/Sema/exprs.c +++ b/test/Sema/exprs.c @@ -97,6 +97,7 @@ int test9(struct f *P) { R = __alignof(P->x); // expected-error {{invalid application of 'alignof' to bit-field}} R = __alignof(P->y); // ok. R = sizeof(P->x); // expected-error {{invalid application of 'sizeof' to bit-field}} + __extension__ ({ R = (__typeof__(P->x)) 2; }); // expected-error {{invalid application of 'typeof' to bit-field}} return R; } |