Home | History | Annotate | Download | only in namespace.udecl
      1 // RUN: %clang_cc1 -std=c++11 -verify %s
      2 
      3 enum class EC { ec };
      4 using EC::ec; // expected-error {{using declaration cannot refer to a scoped enumerator}}
      5