1 // { dg-do compile } 2 // { dg-options "-std=c++0x -pedantic" } main(void)3 int main(void) 4 { 5 alignof(int); //ok with a type but not with an expression 6 alignof(3); // { dg-warning "alignof" } 7 } 8