1 // RUN: %clang_cc1 -fsyntax-only -verify %s 2 3 void // expected-error {{'main' must return 'int'}} main(float a)4 main( // expected-error {{first parameter of 'main' (argument count) must be of type 'int'}} 5 float a 6 ) { 7 } 8