#include <iostream>

template <typename T>
class Foo
{
	public:
	static int bar;
};

template <typename T> int Foo<T>::bar;

int main() {
	std::cout << "Foo<int>::bar : " << &Foo<int>::bar << std::endl;
	std::cout << "Foo<double>::bar : " << &Foo<double>::bar << std::endl;
	return 0;
}