When stepping through the following sample code in Visual Studio 2012:
std::vector<int> test;
test.resize(1);
test[0] = 4;
I can set a watch on test and inspect its 0th element. However, if I set a watch on test[0], I get the error 'no operator "[]" matches these operands':
How can I inspect the value of test[0] directly?