blob: b7845b13e9a4b9388a032d7e3b7c3270d5c69e02 (
plain)
1
2
3
4
5
6
7
|
// RUN: clang-cc -fsyntax-only -verify %s
void // expected-error {{error: 'main' must return 'int'}}
main( // expected-error {{error: first argument of 'main' should be of type 'int'}}
float a
) {
}
|