2009-06-22 08:08:35 +00:00

14 lines
121 B
C++

// RUN: clang-cc -fsyntax-only -verify %s
struct S {};
S E0;
namespace {
enum {
E0 = 1,
E1 = E0 + 1
};
}