4 template <bool compare>
7 template <bool compare_with,bool second>
8 struct inner // unspecialized compare != compare_with
10 static inline bool test()
15 template <bool second> // specialization compare == compare_with
16 struct inner<compare,second>
18 static inline bool test()
26 bool b = outer<true>::inner<true,false>::test();