diff options
Diffstat (limited to 'clang/test/SemaCXX/undefined-inline.cpp')
-rw-r--r-- | clang/test/SemaCXX/undefined-inline.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/clang/test/SemaCXX/undefined-inline.cpp b/clang/test/SemaCXX/undefined-inline.cpp index ad719ae03ab..18973ef8b79 100644 --- a/clang/test/SemaCXX/undefined-inline.cpp +++ b/clang/test/SemaCXX/undefined-inline.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -fsyntax-only -verify %s +// RUN: %clang_cc1 -fsyntax-only -triple i686-pc-win32 -verify %s // PR14993 namespace test1 { @@ -55,3 +55,9 @@ namespace test10 { void test() { foo(); } inline void foo() __attribute__((gnu_inline)); } + +namespace test11 { + inline void foo() __attribute__((dllexport)); + inline void bar() __attribute__((dllimport)); + void test() { foo(); bar(); } +} |