view gcc/testsuite/g++.dg/warn/main-2.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { dg-do compile }
// Make sure that the type of f1 does not change 
// after the error of main about not returning 
// int.
// From Pekka Vuorela <pvuorela@iki.fi> 
// PR c++/23229

void f1();  
  
void  /* { dg-error "1:.\:\:main. must return .int." } */
main()
{     
  f1();  
}  
  
void f1()  
{     
}