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
/
ptrmem17.C
blob
2b73a484735560b76bdf2809e6610def3256f455
1
// PR c++/28346
2
3
template<int> struct A
4
{
5
int& i;
6
A();
7
~A() { &A::i; } // { dg-error "14:cannot create pointer to reference" }
8
};
9
10
A<0> a;