brintos

brintos / llvm-project-archived public Read only

0
0
Text · 150 B · 6bf74c1 Raw
15 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4struct S {};5S E0;6 7namespace {8  enum {9    E0 = 1,10    E1 = E0 + 111  };12}13 14 15