repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
array25.C
blob
4f3ccbf702da6dad255e8a606b9307cbf82d31d8
1
// PR c++/55249
2
3
template <typename _Tp> struct A
4
{
5
_Tp _M_instance[1];
6
};
7
template <class> struct inner_type
8
{
9
inner_type () {}
10
inner_type (inner_type &);
11
inner_type (const inner_type &) {}
12
};
13
14
int
15
main ()
16
{
17
A <inner_type <int> > a, b = a;
18
}