opnsense-src/test/CXX/basic/basic.start/basic.start.main/p2f.cpp
2009-10-14 18:03:49 +00:00

7 lines
207 B
C++

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