blob: 4d8e57c1b9fe55bbedd10174f8f4ff56bcf0e7c2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// RUN: clang-cc -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'}}
|