diff options
Diffstat (limited to 'test/PCH/types.c')
-rw-r--r-- | test/PCH/types.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/PCH/types.c b/test/PCH/types.c index 1ebc01b..c21b33a 100644 --- a/test/PCH/types.c +++ b/test/PCH/types.c @@ -66,7 +66,7 @@ int_ptr_ptr ipp = &int_value_ptr; // TYPE_TYPEOF_EXPR typeof_17 *t17 = &int_value; struct S { int x, y; }; -typeof_17 t17_2 = (struct S){1, 2}; // expected-error{{incompatible type initializing}} +typeof_17 t17_2 = (struct S){1, 2}; // expected-error{{initializing 'typeof_17' (aka 'int') with an expression of incompatible type 'struct S'}} // TYPE_TYPEOF int_ptr_ptr2 ipp2 = &int_value_ptr; |