Welcome to mirror list, hosted at ThFree Co, Russian Federation.

function-overloaded-redecl.cpp « SemaCXX « test « clang - github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 00778816920e2cceb64023e7a1a2f7e194232a27 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_cc1 -fsyntax-only -verify %s 

typedef const int cInt;

void f (int); 
void f (const int);  // redecl

void f (int) {  }    // expected-note {{previous definition is here}}
void f (cInt) { }    // expected-error {{redefinition of 'f'}}