// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -fsyntax-only -std=c++11 -x c++ %s typedef __SIZE_TYPE__ size_t; template struct array { _Tp _M_elems[_Nm]; }; template struct s { array v{static_cast(sizeof (T) / sizeof(T))}; };