Skip to content

Instantly share code, notes, and snippets.

Created July 6, 2012 17:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/3061359 to your computer and use it in GitHub Desktop.
Save anonymous/3061359 to your computer and use it in GitHub Desktop.
#include <iostream>
template <typename T>
struct nesting
{
struct nested
{
T value;
};
template <typename U>
friend T get_value(U const& x)
{
return x.value;
}
};
int main()
{
nesting<int>::nested v = { 42 };
std::cout << get_value(v) << std::endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment