xref: /minix3/external/bsd/llvm/dist/clang/test/CXX/basic/basic.link/p9.cpp (revision e985b929927b5932e3b68f4b50587d458900107a)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 
3 // FIXME: This test is woefully incomplete.
4 namespace N { } // expected-note{{here}}
5 
6 // First bullet: two names with external linkage that refer to
7 // different kinds of entities.
8 void f() {
9   int N(); // expected-error{{redefinition}} expected-warning{{interpreted as a function declaration}} expected-note {{replace parentheses with an initializer}}
10 }
11