repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
tmplattr7.C
blob
ee6c41847683c7244467bdc5ea4be01406d7ba94
1
// PR c++/33620
2
3
template <typename T>
4
struct __attribute__((visibility("default"))) List {};
5
6
int bar(List<int> args);
7
bool test(const List<int> &);
8
9
int i = bar(List<int>());
10
11
bool test(const List<int> &) {}