1 // RUN: %clang_cc1 %s -triple i686-pc-win32 -fsyntax-only -Wc++11-narrowing -Wmicrosoft -verify -fms-extensions -std=c++11
2 // RUN: %clang_cc1 %s -triple i686-pc-win32 -fsyntax-only -Wc++11-narrowing -Wmicrosoft -verify -fms-extensions -std=c++11 -fms-compatibility -DMS_COMPAT
9 A var
= { b
}; // expected-warning {{ cannot be narrowed }} expected-note {{insert an explicit cast to silence this issue}}
16 template<typename F
> auto x(F f
) -> decltype(f(make()));
18 // expected-error@-2{{calling 'make' with incomplete return type 'S'}}
19 // expected-note@-5{{'make' declared here}}
20 // expected-note@-7{{forward declaration of 'PR13433::S'}}