1 // RUN: %clang_cc1 -verify %s
7 int *d
= &__imag a
; // expected-error {{cannot take the address of an rvalue of type 'int'}}
20 double *c
= &__real a
;
21 double *d
= &__imag a
; // expected-error {{cannot take the address of an rvalue of type 'double'}}
25 _Complex
double a
= 1;
27 double *c
= &__real a
;
28 double *d
= &__imag a
;