Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wreturn-type-1.C
blob: fb9a862913955b41ca719648ab48025cc1510a23 [
file
] [
log
] [
blame
]
// PR c++/11725
// { dg-options "-Wreturn-type" }
template
<
class
T
>
struct
A
{
int
foo
()
{
throw
"Stop"
;
}
};