Template Question

Say I have a template outer class and I want the inner class to share that template type:
1
2
3
4
5
6
template <class T>
class A {
	class B {
		T value;
	};
};


Is this possible?
Try it, and you would know the answer.
I am not currently at my pc, so trying it would be impossible, will try when I get home though.
Topic archived. No new replies allowed.