// RUN: %clang_cc1 -verify %s
;
int S<T>::a, S<T>::b; // expected-error {{can only declare a single entity}}
A<T>::a; // expected-error {{expected ';' after struct}} \
expected-error {{use of undeclared identifier 'T'}}
; // expected-error {{expected ';' after struct}} \
expected-error {{a type specifier is required}}
// expected-error {{expected ';' after struct}}
A<int> c;