view gcc/testsuite/g++.dg/warn/Wreturn-1.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// { dg-options "-Wreturn-type" }
// PR c++/15742

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

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