As the title states, I need some way to assert that a type has been declared with alignas as such:
struct alignas(16) MyStruct {
...
};
It is meant to be used for a template parameter where the template class needs to make sure that the type it is templated on is 16 byte aligned.