Re: [C++ PATCH] Fix ICE with initialized static volatile member (PR c++/51463)

2011-12-15 Thread Jason Merrill
OK. Jason

[C++ PATCH] Fix ICE with initialized static volatile member (PR c++/51463)

2011-12-15 Thread Jakub Jelinek
Hi! The problem with this invalid testcase is that we first parse the initializer taking into account the static storage class (i.e. pass it as a normal static data member initializer), but later on in grokdeclarator with error on static volatile being used together and clear static because of it,