aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCXX/incomplete-call.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaCXX/incomplete-call.cpp')
-rw-r--r--test/SemaCXX/incomplete-call.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/SemaCXX/incomplete-call.cpp b/test/SemaCXX/incomplete-call.cpp
index 6f5169ee8a..0fb1ef5f07 100644
--- a/test/SemaCXX/incomplete-call.cpp
+++ b/test/SemaCXX/incomplete-call.cpp
@@ -48,6 +48,10 @@ void test_incomplete_object_call(C& c) {
c(); // expected-error{{incomplete type in call to object of type}}
}
+void test_incomplete_object_dtor(C *p) {
+ p.~C(); // expected-error{{member reference type 'C *' is a pointer; did you mean to use '->'?}}
+}
+
namespace pr18542 {
struct X {
int count;