p9.cpp revision 1d7bcf4b35f8bc0a0a40f4ea7b06b55c63725108
1// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3// FIXME: This test is woefully incomplete.
4namespace N { } // expected-note{{here}}
5
6// First bullet: two names with external linkage that refer to
7// different kinds of entities.
8void f() {
9  int N(); // expected-error{{redefinition}}
10}
11