OSDN Git Service
(root)
/
pf3gnuchains
/
gcc-fork.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
PR c++/47705
[pf3gnuchains/gcc-fork.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
union2.C
1
/* PR c++/40557 */
2
/* { dg-do compile } */
3
4
struct A
5
{
6
typedef int X;
7
};
8
9
template<int> union B
10
{
11
A::X x;
12
};