Mercurial > hg > CbC > CbC_llvm
view clang/test/SemaCXX/ms-overload-entry-point.cpp @ 221:79ff65ed7e25
LLVM12 Original
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 15 Jun 2021 19:15:29 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// RUN: %clang_cc1 -fsyntax-only -verify -fms-extensions -triple i386-pc-win32 %s template <typename T> int wmain() { // expected-error{{'wmain' cannot be a template}} return 0; } namespace { int WinMain(void) { return 0; } int WinMain(int) { return 0; } } void wWinMain(void) {} // expected-note{{previous definition is here}} void wWinMain(int) {} // expected-error{{conflicting types for 'wWinMain'}} int foo() { wmain<void>(); // expected-error{{no matching function for call to 'wmain'}} wmain<int>(); // expected-error{{no matching function for call to 'wmain'}} WinMain(); return 0; }