llvm-project/clang/test/CXX/basic/basic.start/basic.start.main/p2f.cpp

8 lines
225 B
C++

// 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
) {
}