(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
warn/
Wreturn-1.C
// { dg-options "-Wreturn-type" }
// PR c++/15742

extern void exit(int) __attribute__ ((noreturn));

template<typename T>
struct A {
  int find_cmp(void) { exit(1); }
};