opnsense-src/test/CXX/basic/basic.start/basic.start.main/p2f.cpp
2010-01-01 10:34:51 +00:00

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