1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
15 lines
257 B
C++
15 lines
257 B
C++
// 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};
|
|
}
|