mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-04 13:06:01 +00:00
17 lines
248 B
C++
17 lines
248 B
C++
// { dg-do run }
|
|
|
|
#include <cxxabi.h>
|
|
#include <cassert>
|
|
#include <cstddef>
|
|
|
|
int main()
|
|
{
|
|
std::size_t length = 0;
|
|
int cc;
|
|
|
|
char* ret = abi::__cxa_demangle("e", 0, &length, &cc);
|
|
|
|
assert( (cc < 0 && !ret) || (ret && length) );
|
|
return 0;
|
|
}
|