blob: ae143d26f4e80ccaa9475a129d74bcc5022cd6ec [file] [log] [blame]
struct A
{
int m_i;
};
int someFunc()
{
return sizeof(A::m_i) > 0 ? 1 : 2;
}