blob: 4d8e57c1b9fe55bbedd10174f8f4ff56bcf0e7c2 [file] [log] [blame]
// 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'}}