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
ipa-cp: Perform operations in the appropriate types (PR 118097)
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
fn.C
blob
6b5f09ae2d01a39328c0dc5481f202552ccefc08
1
// instantiation cannot turn a data member into a function!
2
3
typedef int (frib) (int);
4
5
template <typename T> class X
6
{
7
T v; // { dg-error "declared function" }
8
};
9
10
X<frib> v;