1 // PR c++/90736 - bogus error with alignof.
2 // { dg-do compile { target c++11 } }
3 
fn(const int b)4 constexpr int fn(const int b) { return b; }
5 constexpr int c = fn(alignof(int));
6 alignas(c) char d;
7