forked from OSchip/llvm-project
18 lines
198 B
C++
18 lines
198 B
C++
|
// RUN: clang-cc -fsyntax-only %s
|
||
|
|
||
|
// PR5057
|
||
|
namespace std {
|
||
|
class X {
|
||
|
public:
|
||
|
template<typename T>
|
||
|
friend struct Y;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
namespace std {
|
||
|
template<typename T>
|
||
|
struct Y
|
||
|
{
|
||
|
};
|
||
|
}
|