blob: 553e33ded424d5bc3e0e8367b23b90884ebc9f96 [file] [log] [blame]
// PR c++/16618
#include <stddef.h>
struct test
{
const char a;
};
int main()
{
offsetof(test,a);
}