blob: 9702c972182d9faeb5466427fb6fd1baa4840faf [file] [log] [blame]
Aaron Ballman674cf262015-05-26 19:44:52 +00001// RUN: %clang_cc1 -triple i686-pc-win32 -fms-extensions -verify %s
Ted Kremeneka3cfc4d2010-02-21 05:12:53 +00002
Hans Wennborgf436b282014-05-22 15:46:15 +00003// Do not report that 'foo()' is redeclared without dllimport attribute.
Ted Kremeneka3cfc4d2010-02-21 05:12:53 +00004// specified. Addresses <rdar://problem/7653912>.
5
Hans Wennborgf436b282014-05-22 15:46:15 +00006// expected-no-diagnostics
Ted Kremeneka3cfc4d2010-02-21 05:12:53 +00007__declspec(dllimport) int __cdecl foo(void);
8inline int __cdecl foo() { return 0; }