aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/alignof2.C
blob: d571d9d77dc66d51ea11a21223acbae4ce20f74a (plain)
1
2
3
4
5
6
7
// { dg-do compile { target c++11 } }
// { dg-options "-pedantic" }
int main(void)
{
  alignof(int); //ok with a type but not with an expression
  alignof(3);   // { dg-warning "alignof" }
}