summaryrefslogtreecommitdiff
path: root/test/SemaCXX/fntype-decl.cpp
blob: b8ae625710dbbf43b6e13101652bb6f8552f7567 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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'}}