// RUN: %clang_cc1 -triple thumbv7--windows-msvc -std=c++11 -verify -fsyntax-only %s // expected-no-diagnostics #include template struct is_same { enum { value = 0 }; }; template struct is_same { enum { value = 1 }; }; void check() { va_list va; char *cp; static_assert(is_same::value, "type mismatch for va_list"); }