minix/external/bsd/llvm/dist/clang/test/SemaCXX/templated-friend-decl.cpp
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

15 lines
393 B
C++

// RUN: %clang_cc1 %s
template <typename T>
struct Foo {
template <typename U>
struct Bar {};
// The templated declaration for class Bar should not be instantiated when
// Foo<int> is. This is to protect against PR5848; for now, this "parses" but
// requires a rewrite of the templated friend code to be properly fixed.
template <typename U>
friend struct Bar;
};
Foo<int> x;