mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 17:00:58 -05:00
7 lines
207 B
C++
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
|
|
) {
|
|
}
|