opnsense-src/test/CXX/basic/basic.start/basic.start.main/p2f.cpp

8 lines
225 B
C++
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -fsyntax-only -verify %s
2009-10-14 14:03:49 -04:00
void // expected-error {{error: 'main' must return 'int'}}
2010-01-01 05:34:51 -05:00
main( // expected-error {{error: first parameter of 'main' (argument count) must be of type 'int'}}
2009-10-14 14:03:49 -04:00
float a
) {
}