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