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
/
ref5.C
blob
69c2d6989c7b2181681577f3da3ea0372c0bf5ba
1
// PR c++/35075
2
3
template<int&> struct A {};
4
5
template<typename T> struct B
6
{
7
static const T t;
8
A<t> a; // { dg-error "reference variable" }
9
};
10
11
B<int&> b; // { dg-message "required" }