mirror of
https://github.com/opnsense/src.git
synced 2026-04-26 08:37:50 -04:00
8 lines
207 B
C++
8 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
|
||
|
|
) {
|
||
|
|
}
|