p4.cpp 208 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 // RUN: %clang_cc1 -fsyntax-only -verify %s void f() { struct X { static int a; // expected-error {{static data member 'a' not allowed in local struct 'X'}} int b; static void f() { } }; }