// RUN: %clang_cc1 -fsyntax-only -verify -fms-extensions -triple i386-pc-win32 %s
template<typename T>intwmain(){// expected-error{{'wmain' cannot be a template}}
return0;}namespace{intWinMain(void){return0;}intWinMain(int){return0;}}voidwWinMain(void){}// expected-note{{previous definition is here}}
voidwWinMain(int){}// expected-error{{conflicting types for 'wWinMain'}}
intfoo(){wmain<void>();// expected-error{{no matching function for call to 'wmain'}}
wmain<int>();// expected-error{{no matching function for call to 'wmain'}}
WinMain();return0;}