Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
dfp
/
mangle-6.C
blob: 9cfb2a974bb4995431734dbf9dfa731585e6fdaf [
file
] [
log
] [
blame
]
// PR c++/100261
// { dg-do compile }
#include
<typeinfo>
namespace
std
{
namespace
decimal
{
class
decimal32
{
float
private__decfloat32
;
};
}
}
void
foo
()
{
typeid
(
float
);
typeid
(
std
::
decimal
::
decimal32
);
}