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
/
assign1.C
blob
d0e134a477b035a34cc1cf92b4e39da7985ac0f2
1
// PR c++/16623
2
3
template <int N>
4
struct C
5
{
6
C& operator= (int);
7
};
8
9
template <int N>
10
C<N>& C<N>::operator= (int)
11
{
12
return *this;
13
}
14
15
C<0> a;