✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Яка причина помилки в цьому коді?
template<typename T>
class Box {
T value;
public:
Box(T v) : value(v) {}
};
int main() {
Box b(10);
}