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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
friend8.C
blob
21fd242f1836dd1679a5e849c808e0679b15ebb1
1
template <int N> struct ivector
2
{
3
template <int r, int c> friend void
4
mult_mv ();
5
};
6
7
template struct ivector<3>;
8
9
template <int r, int c> void
10
mult_mv ()
11
{
12
c;
13
}
14
15
void get_local_point_pos ()
16
{
17
mult_mv<7, 3> ();
18
}