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

8 lines
207 B
C++
Raw Normal View History

2009-10-14 14:03:49 -04:00
// 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
) {
}