YouCompleteMe/cpp/llvm/tools/clang/test/CXX/class/class.nest/p3.cpp
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

26 lines
585 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
// C++0x [class.nest] p3:
// If class X is defined in a namespace scope, a nested class Y may be
// declared in class X and later defined in the definition of class X or be
// later defined in a namespace scope enclosing the definition of class X.
namespace example {
class E {
class I1;
class I2;
class I1 { };
};
class E::I2 { };
}
// Don't insert out-of-line inner class definitions into the namespace scope.
namespace PR6107 {
struct S1 { };
struct S2 {
struct S1;
};
struct S2::S1 { };
S1 s1;
}