diff options
author | dim <dim@FreeBSD.org> | 2013-04-08 18:45:10 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2013-04-08 18:45:10 +0000 |
commit | c72c57c9e9b69944e3e009cd5e209634839581d3 (patch) | |
tree | 4fc2f184c499d106f29a386c452b49e5197bf63d /test/SemaCXX/undefined-inline.cpp | |
parent | 5b20025c30d23d521e12c1f33ec8fa6b821952cd (diff) | |
download | FreeBSD-src-c72c57c9e9b69944e3e009cd5e209634839581d3.zip FreeBSD-src-c72c57c9e9b69944e3e009cd5e209634839581d3.tar.gz |
Vendor import of clang trunk r178860:
http://llvm.org/svn/llvm-project/cfe/trunk@178860
Diffstat (limited to 'test/SemaCXX/undefined-inline.cpp')
-rw-r--r-- | test/SemaCXX/undefined-inline.cpp | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/test/SemaCXX/undefined-inline.cpp b/test/SemaCXX/undefined-inline.cpp new file mode 100644 index 0000000..ad719ae --- /dev/null +++ b/test/SemaCXX/undefined-inline.cpp @@ -0,0 +1,57 @@ +// RUN: %clang_cc1 -fsyntax-only -verify %s +// PR14993 + +namespace test1 { + inline void f(); // expected-warning{{inline function 'test1::f' is not defined}} + void test() { f(); } // expected-note{{used here}} +} + +namespace test2 { + inline int f(); + void test() { (void)sizeof(f()); } +} + +namespace test3 { + void f(); // expected-warning{{inline function 'test3::f' is not defined}} + inline void f(); + void test() { f(); } // expected-note{{used here}} +} + +namespace test4 { + inline void error_on_zero(int); // expected-warning{{inline function 'test4::error_on_zero' is not defined}} + inline void error_on_zero(char*) {} + void test() { error_on_zero(0); } // expected-note{{used here}} +} + +namespace test5 { + struct X { void f(); }; + void test(X &x) { x.f(); } +} + +namespace test6 { + struct X { inline void f(); }; // expected-warning{{inline function 'test6::X::f' is not defined}} + void test(X &x) { x.f(); } // expected-note{{used here}} +} + +namespace test7 { + void f(); // expected-warning{{inline function 'test7::f' is not defined}} + void test() { f(); } // no used-here note. + inline void f(); +} + +namespace test8 { + inline void foo() __attribute__((gnu_inline)); + void test() { foo(); } +} + +namespace test9 { + void foo(); + void test() { foo(); } + inline void foo() __attribute__((gnu_inline)); +} + +namespace test10 { + inline void foo(); + void test() { foo(); } + inline void foo() __attribute__((gnu_inline)); +} |