4 lines
91 B
C++
4 lines
91 B
C++
template<typename T, T v> struct c {};
|
|
using d = c<bool, false>;
|
|
struct foo : public d {};
|