2020-10-22 20:43:01 +03:00

7 lines
111 B
C++

#include <cstddef>
int main (int argc, char* argv[])
{
std::size_t n = alignof(int);
return 0;
}