------- Additional Comments From Hu dot YuehWei at gmail dot com 2005-03-19 14:01 ------- #include <vector>
struct T { static char const a = 3; }; void fff(char a) { } std::vector<char> b; int main() { fff(T::a); /* this line of codes is fine. */ b.push_back(T::a); /* however, this line of codes is an error. */ return 0; } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20547