diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2009-12-20 22:29:11 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2009-12-20 22:29:11 +0000 |
commit | dd4e485a0db4e651f28281cd3eda93aad6ee04fd (patch) | |
tree | 881babde863e8cb5d2af528475bbe944804002b5 /test/SemaTemplate/instantiate-decl-dtor.cpp | |
parent | 33c2da9b3abdade4f0df4f90962fb8c518967fc4 (diff) |
Make sure we instantiate the destructor for variables initialized by
assignment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91798 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaTemplate/instantiate-decl-dtor.cpp')
-rw-r--r-- | test/SemaTemplate/instantiate-decl-dtor.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/SemaTemplate/instantiate-decl-dtor.cpp b/test/SemaTemplate/instantiate-decl-dtor.cpp new file mode 100644 index 0000000000..193d9764c2 --- /dev/null +++ b/test/SemaTemplate/instantiate-decl-dtor.cpp @@ -0,0 +1,11 @@ +// RUN: %clang_cc1 %s -fsyntax-only -verify + +template <typename T> struct A { + T x; + A(int y) { x = y; } + ~A() { *x = 10; } // expected-error {{indirection requires pointer operand}} +}; + +void a() { + A<int> b = 10; // expected-note {{requested here}} +} |