#include <iostream>

struct Outer
{
	template<typename T>
	struct Inner
	{
	};
	template<>
	struct Inner<double>
	{
	};
};

int main()
{
}
