StepOut and Continue

This commit is contained in:
Ben Jackson 2018-05-20 16:18:40 +01:00
commit f55dc8cd8e
3 changed files with 27 additions and 2 deletions

View file

@ -17,7 +17,7 @@ namespace Test
void bar( TestStruct b )
{
std::string s;
s += b.isInt ? b.something.somethingInt : b.something.somethingChar;
s += b.isInt ? "An int" : "A char";
std::cout << s << '\n';
}