Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
tmplattr7.C
blob: 545e089f1bbbcbae0bcfd9627a4fe8e5b6c5499b [
file
] [
log
] [
blame
]
// PR c++/33620
template
<
typename
T
>
struct
__attribute__
((
visibility
(
"default"
)))
List
{};
int
bar
(
List
<int>
args
);
bool
test
(
const
List
<int>
&);
int
i
=
bar
(
List
<int>
());
bool
test
(
const
List
<int>
&)
{
return
true
;
}