Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
tmplattr6.C
blob: 17f23fe349382e3f554237b7caadf56bd79471af [
file
] [
log
] [
blame
]
// Don't crash on an unknown attribute.
struct
foo
{
template
<
class
T
>
void
__attribute__
((
leafify
))
bar
()
{}
// { dg-warning "ignored" }
};
void
bar
(
void
)
{
foo f
;
f
.
bar
<int>
();
}