diff options
author | Nico Weber <nicolasweber@gmx.de> | 2015-03-06 06:01:06 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2015-03-06 06:01:06 +0000 |
commit | 55905145e7cfe2adca541e7162b91d23a4e7f26c (patch) | |
tree | 4ea746cde850d89e53d033c5860962b13baa543d /clang/test/CodeGenCXX/trivial-constructor-init.cpp | |
parent | 72146af68c9cfa570d32f52f961e1b15f91d8a2b (diff) | |
download | bcm5719-llvm-55905145e7cfe2adca541e7162b91d23a4e7f26c.tar.gz bcm5719-llvm-55905145e7cfe2adca541e7162b91d23a4e7f26c.zip |
Don't crash on non-public referenced dtors in toplevel classes.
Fixes PR22793, a bug that caused self-hosting to fail after the innocuous
r231254. See the bug for details.
llvm-svn: 231451
Diffstat (limited to 'clang/test/CodeGenCXX/trivial-constructor-init.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/trivial-constructor-init.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/trivial-constructor-init.cpp b/clang/test/CodeGenCXX/trivial-constructor-init.cpp index 9130e4e5d95..da17799dfa4 100644 --- a/clang/test/CodeGenCXX/trivial-constructor-init.cpp +++ b/clang/test/CodeGenCXX/trivial-constructor-init.cpp @@ -32,3 +32,17 @@ static C c[4]; int main() { } + +namespace PR22793 { +template <typename> +struct foo { +protected: +// CHECK-NOT: _ZN7PR227933fooIiED2Ev + ~foo() = default; + friend void func(); +}; + +void func() { foo<int> f; } + +template struct foo<int>; +} |