blob: 4d8e57c1b9fe55bbedd10174f8f4ff56bcf0e7c2 [file] [log] [blame]
Fariborz Jahanian76056182009-09-29 20:28:06 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
3typedef const int cInt;
4
5void f (int);
6void f (const int); // redecl
7
8void f (int) { } // expected-note {{previous definition is here}}
9void f (cInt) { } // expected-error {{redefinition of 'f'}}
10