summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/2004-11-27-ExceptionCleanupAssertion.cpp
blob: ebcce7796e71b008b2f72ef7e574975b0eaee68f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %clang_cc1 %s -emit-llvm -o /dev/null

// This is PR421

struct Strongbad {
    Strongbad(const char *str );
    ~Strongbad();
    operator const char *() const;
};

void TheCheat () {
  Strongbad foo(0);
  Strongbad dirs[] = { Strongbad(0) + 1};
}