repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
dfp
/
mangle-6.C
blob
9cfb2a974bb4995431734dbf9dfa731585e6fdaf
1
// PR c++/100261
2
// { dg-do compile }
3
4
#include <typeinfo>
5
6
namespace std {
7
namespace decimal {
8
class decimal32 {
9
float private__decfloat32;
10
};
11
}
12
}
13
14
void
15
foo ()
16
{
17
typeid (float);
18
typeid (std::decimal::decimal32);
19
}