aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/basic/basic.start/basic.start.main/p2f.cpp
blob: a3d6a79a4fa0a0a54078dde729341b9183c27207 (plain)
1
2
3
4
5
6
7
// 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
) {
}