I've searched many resources and in the examples that they provide, it looks like this:
void bar(int a = 4, char b = 'A')
{
}
According to this resource it can be called like:
bar(b : 'Z');
but it gives me an error identifier "b" is undefined
.
I am using Visual Studio 2015 Update 3 Enterprise.
Any suggestions how to specify only the second parameter?