p9.cpp 400 B

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