mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 08:50:22 -05:00
7 lines
225 B
C++
7 lines
225 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
void // expected-error {{error: 'main' must return 'int'}}
|
|
main( // expected-error {{error: first parameter of 'main' (argument count) must be of type 'int'}}
|
|
float a
|
|
) {
|
|
}
|