summaryrefslogtreecommitdiff
path: root/TestPrograms/test_cxx11_alignof.cpp
blob: f2d701ce8f82e88de041b3d6119ae1678a2ff249 (plain)
1
2
3
4
5
6
#include <cstddef>
int main (int argc, char* argv[])
{
    std::size_t n = alignof(int);
    return 0;
}