View difference between Paste ID: kytm31YA and TAmVLCL4
SHOW: | | - or go back to the newest paste.
1
template<class A, class B>
2
class CA
3
{
4
  public:
5
    CA(){};
6
    ~CA(){};
7
    template<class C>
8
    class CB;
9
    CB<B> cb;
10
};
11
12-
template<>
12+
13-
class CA<A, B>::CB<B>
13+
template<class C>
14
class CA<A, B>::CB
15
{
16
  public:
17
    CB(){};
18
    ~CB(){};
19
};