forked from OSchip/llvm-project
40 lines
783 B
C++
40 lines
783 B
C++
// RUN: clang-cc -fsyntax-only -verify %s
|
|
struct A {};
|
|
|
|
enum Foo { F };
|
|
typedef Foo Bar;
|
|
|
|
typedef int Integer;
|
|
|
|
void g();
|
|
|
|
namespace N {
|
|
typedef Foo Wibble;
|
|
}
|
|
|
|
void f(A* a, Foo *f, int *i) {
|
|
a->~A();
|
|
a->A::~A();
|
|
|
|
a->~foo(); // expected-error{{identifier 'foo' in pseudo-destructor expression does not name a type}}
|
|
|
|
// FIXME: the type printed below isn't wonderful
|
|
a->~Bar(); // expected-error{{no member named}}
|
|
|
|
f->~Bar();
|
|
f->~Foo();
|
|
i->~Bar(); // expected-error{{does not match}}
|
|
|
|
g().~Bar(); // expected-error{{non-scalar}}
|
|
|
|
f->::~Bar();
|
|
f->N::~Wibble();
|
|
|
|
f->::~Bar(17, 42); // expected-error{{cannot have any arguments}}
|
|
}
|
|
|
|
typedef int Integer;
|
|
|
|
void destroy_without_call(int *ip) {
|
|
ip->~Integer; // expected-error{{called immediately}}
|
|
} |