blob: a3d6a79a4fa0a0a54078dde729341b9183c27207 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
void // expected-error {{error: 'main' must return 'int'}}
main( // expected-error {{error: first parameter of 'main' (argument count) must be of type 'int'}}
float a
) {
}