// RUN: %clang_cc1 %s -verify -fsyntax-only
// Basic parsing/Sema tests for _Atomic
// No operations are actually supported on objects of this type yet.
// The qualifier syntax is not supported yet.
t1;
*t2 = &t1;
void ;
void
extern mergetest;
extern mergetest;
extern mergetest;
error1; // expected-error {{_Atomic cannot be applied to function type}}
error2; // expected-error {{_Atomic cannot be applied to incomplete type}} expected-note {{forward declaration}}
error3; // expected-error {{_Atomic cannot be applied to array type}}
error4; // expected-error {{_Atomic cannot be applied to qualified type}}
error5; // expected-error {{_Atomic cannot be applied to atomic type}}