Sign in
llvm
/
llvm-archive
/
7affdee41b96f79da48a0402817c7e4a821b6983
/
.
/
safecode
/
tools
/
clang
/
test
/
CXX
/
basic
/
basic.start
/
basic.start.main
/
p2f.cpp
blob: ea5a752a191cdabb38398e05303f3f29c0453c46 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify %s
void
// expected-error {{'main' must return 'int'}}
main
(
// expected-error {{first parameter of 'main' (argument count) must be of type 'int'}}
float
a
)
{
}