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