brintos

brintos / llvm-project-archived public Read only

0
0
Text · 400 B · 680c93d Raw
11 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3// FIXME: This test is woefully incomplete.4namespace N { } // expected-note{{here}}5 6// First bullet: two names with external linkage that refer to7// different kinds of entities.8void f() {9  int N(); // expected-error{{redefinition}} expected-warning{{interpreted as a function declaration}} expected-note {{replace parentheses with an initializer}}10}11