minix/external/bsd/llvm/dist/clang/test/SemaCXX/fntype-decl.cpp
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

20 lines
469 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
// PR2942
typedef void fn(int);
fn f; // expected-note {{previous declaration is here}}
int g(int x, int y);
int g(int x, int y = 2);
typedef int g_type(int, int);
g_type g;
int h(int x) { // expected-note {{previous definition is here}}
return g(x);
}
float f(int) { } // expected-error{{functions that differ only in their return type cannot be overloaded}}
int h(int) { } // expected-error{{redefinition of 'h'}}